diff options
Diffstat (limited to 'aes.h')
-rw-r--r-- | aes.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,7 +12,8 @@ namespace AES{ std::string encrypt(const std::string &data,const std::string &key,Algorithm algo); - //throws invalid_argument for an invalid ciphertext (length not a multiple of block size, or padding malformed) or an invalid key (invalid length) + //throws invalid_argument for an invalid ciphertext (length not a multiple of block + //size, or padding malformed) or an invalid key (invalid length) std::string decrypt(const std::string &data,const std::string &key,Algorithm algo); } |