EncryptFile.h 282 B

12345678910111213141516171819
  1. #ifndef __MAS_ENCRYPT_H
  2. #define __MAS_ENCRYPT_H
  3. #include "MAS_Definition.h"
  4. NAMESPACE_MAS_BEGIN
  5. class EncryptFile {
  6. public:
  7. static TZ_INT encryptXor(const std::string & inputPath);
  8. static TZ_INT decryptXor(const std::string & inputPath);
  9. };
  10. NAMESPACE_MAS_END
  11. #endif