| 123456789101112131415161718192021222324 |
- #pragma once
- #include "ARACrypt.h"
- namespace OTSMODEL
- {
- class COTSCrypt
- {
- public:
- COTSCrypt(void);
- virtual ~COTSCrypt(void);
- //virtual void SetKey(LPCTSTR a_psKey);
- void Encrypt(const LPCTSTR& a_sKey, CString& a_sLicense);
- void Decrypt(const LPCTSTR& a_sKey, CString& a_sLicense);
- private:
- CARACrypt m_oCrypt;
- };
- }
|