aboutsummaryrefslogtreecommitdiff
path: root/aes.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-12 22:38:33 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-12 22:38:33 +0200
commitfa5696d2a1ec781bc3f7ff197ebf0c0019bb56c4 (patch)
tree164a1d506b3646560d6e0e48cd4908f1d09b8582 /aes.h
parent3b25b6fb719bcbaf8a75d9959b5334662dcb2700 (diff)
Comment aes.{cpp,h}
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/aes.h b/aes.h
index 9274d21..77dc9d2 100644
--- a/aes.h
+++ b/aes.h
@@ -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);
}