diff options
author | lloyd <[email protected]> | 2010-06-22 13:43:18 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-22 13:43:18 +0000 |
commit | 54bac11c5d4e051f996951feb6a037b1de001329 (patch) | |
tree | 8cfa3b72ae36dcd156c4ab4dae1066ee3e021830 /src/sym_algo/symkey.h | |
parent | 991f744c5a3e9610a2e4af70ae5daeb7a943a38e (diff) | |
parent | 238869aed29c3d703650ce55404929dc7e3f31fb (diff) |
propagate from branch 'net.randombit.botan' (head 647eeb4f4cf8fa4cf487cdc463d48f09fe18658e)
to branch 'net.randombit.botan.c++0x' (head 2539675db91883b11895ddc5244721e93c413321)
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; } |