diff options
Diffstat (limited to 'src/sym_algo/symkey.h')
-rw-r--r-- | src/sym_algo/symkey.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/sym_algo/symkey.h b/src/sym_algo/symkey.h index 450dab306..07b588329 100644 --- a/src/sym_algo/symkey.h +++ b/src/sym_algo/symkey.h @@ -140,10 +140,15 @@ BOTAN_DLL OctetString operator+(const OctetString& x, BOTAN_DLL OctetString operator^(const OctetString& x, const OctetString& y); -/* -* Alternate Names + +/** +* Alternate name for octet string showing intent to use as a key */ typedef OctetString SymmetricKey; + +/** +* Alternate name for octet string showing intent to use as an IV +*/ typedef OctetString InitializationVector; } |