📄 main.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -