skCrypt 轻量级加密字符串
用于 C++11+ 的安全轻量级字符串加密库 用户模式 + 内核模式
auto testString = skCrypt(L"TestString"); // encrypted at compile-time
// or skCrypt_key to set the keys manually
wprintf(testString); // automatic decryption on usage (alternatively .decrypt())
testString.encrypt(); // encrypt after usage if needed again
// or
testString.clear(); // set full string storage to 0
Github:
https://github.com/skadro-official/skCrypter