aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/rc2/rc2.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-15 23:33:00 +0000
committerlloyd <[email protected]>2010-06-15 23:33:00 +0000
commit49c18ab9131cd1a36e5e90bbfc18ef3f33361d50 (patch)
treede69a5edea7128380a046598fcac66c064f32b4a /src/block/rc2/rc2.h
parent76b57a7c4656f0f5759c34efe8bab664b49cd21d (diff)
More Doxygen updates
Diffstat (limited to 'src/block/rc2/rc2.h')
-rw-r--r--src/block/rc2/rc2.h7
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"; }