diff options
Diffstat (limited to 'src/pk_pad/emsa1/emsa1.h')
-rw-r--r-- | src/pk_pad/emsa1/emsa1.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pk_pad/emsa1/emsa1.h b/src/pk_pad/emsa1/emsa1.h index e95414ad3..50fda5273 100644 --- a/src/pk_pad/emsa1/emsa1.h +++ b/src/pk_pad/emsa1/emsa1.h @@ -20,6 +20,9 @@ namespace Botan { class BOTAN_DLL EMSA1 : public EMSA { public: + /** + * @param h the hash object to use + */ EMSA1(HashFunction* h) : hash(h) {} ~EMSA1() { delete hash; } protected: |