主题:[原创]加密算法系列
好久没来了,最近的安全课,编了不少加密算法,放上来与大家共同切磋^_^
之下去的一系列加密算法都继承与一下基类
//Encrypt system
//author: smallrain
//2006.3.22 in fzu
//MyCipherSystem.h
#ifndef ENCRYPT_SYSTEM
#define ENCRYPT_SYSTEM
#include <string>
using std::string;
typedef char Byte;
#endif //ENCRYPT_SYSTEM
之下去的一系列加密算法都继承与一下基类
//Encrypt system
//author: smallrain
//2006.3.22 in fzu
//MyCipherSystem.h
#ifndef ENCRYPT_SYSTEM
#define ENCRYPT_SYSTEM
#include <string>
using std::string;
typedef char Byte;
#endif //ENCRYPT_SYSTEM