LTS Commits

This commit is contained in:
Thulinma 2015-04-05 21:38:36 +02:00
parent f24d97b510
commit 4bdbd82f66
72 changed files with 8245 additions and 105 deletions

8
lib/encryption.h Normal file
View file

@ -0,0 +1,8 @@
#include <string>
namespace Encryption {
std::string AES_Crypt(const std::string & data, const std::string & key, std::string & ivec);
std::string PR_GenerateContentKey(std::string & keyseed, std::string & keyid);
std::string PR_GuidToByteArray(std::string & guid);
}