aboutsummaryrefslogtreecommitdiffstats
path: root/src/pk_pad/emsa4
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-21 22:18:21 +0000
committerlloyd <[email protected]>2010-06-21 22:18:21 +0000
commit23da3a13a1d4852e6c7560c37e308ba0db6c77da (patch)
tree914df03485b9ff2b9fdd4c8670f9f86648375a8a /src/pk_pad/emsa4
parent2b1f7e7b700ae67c8c03a30aa123f59df00e9951 (diff)
Doxygen
Diffstat (limited to 'src/pk_pad/emsa4')
-rw-r--r--src/pk_pad/emsa4/emsa4.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/pk_pad/emsa4/emsa4.h b/src/pk_pad/emsa4/emsa4.h
index 6315c424e..7dfc3892a 100644
--- a/src/pk_pad/emsa4/emsa4.h
+++ b/src/pk_pad/emsa4/emsa4.h
@@ -20,8 +20,16 @@ namespace Botan {
class BOTAN_DLL EMSA4 : public EMSA
{
public:
- EMSA4(HashFunction*);
- EMSA4(HashFunction*, u32bit);
+ /**
+ * @param hash the hash object to use
+ */
+ EMSA4(HashFunction* hash);
+
+ /**
+ * @param hash the hash object to use
+ * @param salt_size the size of the salt to use in bytes
+ */
+ EMSA4(HashFunction* hash, u32bit salt_size);
~EMSA4() { delete hash; delete mgf; }
private: