diff options
Diffstat (limited to 'src/pk_pad/emsa3/emsa3.h')
-rw-r--r-- | src/pk_pad/emsa3/emsa3.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pk_pad/emsa3/emsa3.h b/src/pk_pad/emsa3/emsa3.h index 1e080aab6..09c1e40cc 100644 --- a/src/pk_pad/emsa3/emsa3.h +++ b/src/pk_pad/emsa3/emsa3.h @@ -21,7 +21,10 @@ namespace Botan { class BOTAN_DLL EMSA3 : public EMSA { public: - EMSA3(HashFunction*); + /** + * @param hash the hash object to use + */ + EMSA3(HashFunction* hash); ~EMSA3(); void update(const byte[], u32bit); |