DES AES SM4 TEA源码
DES:
#include
#include
#include
#include
#include
#include
using namespace std;
typedef bool (*PSubKey)[16][48];
enum {ENCRYPT,DECRYPT}; //选择:加密;解密
static bool SubKey[2][16][48]; // 16圈子密钥
static bool Is3DES; // 3次DES标志
static char Tmp[256], deskey[16]; //暂存字符串,密钥串
static void DES(char
共有 0 条评论