diff options
author | lloyd <[email protected]> | 2010-06-15 23:33:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 23:33:00 +0000 |
commit | 49c18ab9131cd1a36e5e90bbfc18ef3f33361d50 (patch) | |
tree | de69a5edea7128380a046598fcac66c064f32b4a /src/block/rc2/rc2.h | |
parent | 76b57a7c4656f0f5759c34efe8bab664b49cd21d (diff) |
More Doxygen updates
Diffstat (limited to 'src/block/rc2/rc2.h')
-rw-r--r-- | src/block/rc2/rc2.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/block/rc2/rc2.h b/src/block/rc2/rc2.h index d4ecac462..c16680347 100644 --- a/src/block/rc2/rc2.h +++ b/src/block/rc2/rc2.h @@ -21,7 +21,12 @@ class BOTAN_DLL RC2 : public BlockCipher void encrypt_n(const byte in[], byte out[], u32bit blocks) const; void decrypt_n(const byte in[], byte out[], u32bit blocks) const; - static byte EKB_code(u32bit); + /** + * Return the code of the effective key bits + * @param bits key length + * @return EKB code + */ + static byte EKB_code(u32bit bits); void clear() { K.clear(); } std::string name() const { return "RC2"; } |