www.pudn.com > CipherSystem.rar > MyCipherSystem.h
//Encrypt system //author: smallrain //2006.3.22 in fzu #ifndef ENCRYPT_SYSTEM #define ENCRYPT_SYSTEM #include "stdafx.h" #includeusing std::string; typedef char Byte; class EncryptSystem { public: void GetData(const std::string& str); //protected: std::string text; }; #endif //ENCRYPT_SYSTEM