algorithms.cs
来自「g729 coding ipaddressing」· CS 代码 · 共 15 行
CS
15 行
using System;
using System.Collections.Generic;
using System.Text;
namespace SimpleCryptographer
{
class Algorithms
{
public static readonly int DES = 0;
public static readonly int AES = 1;
public static readonly int DES_File = 2;
public static readonly int AES_File = 3;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?