aboutsummaryrefslogtreecommitdiffstats
path: root/src/sym_algo
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/sym_algo
parent76b57a7c4656f0f5759c34efe8bab664b49cd21d (diff)
More Doxygen updates
Diffstat (limited to 'src/sym_algo')
-rw-r--r--src/sym_algo/sym_algo.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sym_algo/sym_algo.h b/src/sym_algo/sym_algo.h
index f00c8cedf..f1a4955ca 100644
--- a/src/sym_algo/sym_algo.h
+++ b/src/sym_algo/sym_algo.h
@@ -87,7 +87,12 @@ class BOTAN_DLL SymmetricAlgorithm
virtual ~SymmetricAlgorithm() {}
private:
- virtual void key_schedule(const byte[], u32bit) = 0;
+ /**
+ * Run the key schedule
+ * @param key the key
+ * @param length of key
+ */
+ virtual void key_schedule(const byte key[], u32bit length) = 0;
};
/**