12345678910111213141516171819 |
- #ifndef __MAS_ENCRYPT_H
- #define __MAS_ENCRYPT_H
- #include "MAS_Definition.h"
- NAMESPACE_MAS_BEGIN
- class EncryptFile {
- public:
- static TZ_INT encryptXor(const std::string & inputPath);
- static TZ_INT decryptXor(const std::string & inputPath);
- };
- NAMESPACE_MAS_END
- #endif
|