- easy to learn
- easy to use
- 192 bit implementation
- 256 bit implementation
- build-in password hashing
aes128 aes;
const std::string original_message = "hello world";
const auto encrypted_message = aes.encrypt(original_message, "goodby");
const auto decrypted_message = aes.decrypt(encrypted_message, "goodby");
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.