main.cs
来自「source for advanced algorithm」· CS 代码 · 共 28 行
CS
28 行
using System;
using System.Collections.Generic;
using System.Text;
namespace BlowfishNET.Tests
{
/// <summary>Playground to debug single tests in Visual C# Express Edition,
/// where class libraries cannot be associated with a calling process.</summary>
/// <remarks>For own experiments make sure that the output type is changed
/// from "Class Library" to "Console Application".</remarks>
class Application
{
static void Main()
{
TestBlowfishAlgorithm tbfa = new TestBlowfishAlgorithm();
//tbfa.TestCryptoStreams();
TestJavaInterop tji = new TestJavaInterop();
//tji.TestBlowfishStream();
//tji.TestBlowfishJXchg();
TestCore tc = new TestCore();
//tc.Test();
tc.TestCFBOpenSSL();
TestBlowfishSimple tbfs = new TestBlowfishSimple();
tbfs.Test();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?