aboutsummaryrefslogtreecommitdiffstats
path: root/src/pk_pad/emsa1
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-21 19:27:20 +0000
committerlloyd <[email protected]>2010-06-21 19:27:20 +0000
commit89ae6f4bc2ff25dc5625875e0cb57b78b28a0b6e (patch)
tree2e3e85fdefbd8d21ebab223a3947f34b890fdddc /src/pk_pad/emsa1
parentce14ac149a3b3bf70b3554aeefcdb9de5976da34 (diff)
Doxygen
Diffstat (limited to 'src/pk_pad/emsa1')
-rw-r--r--src/pk_pad/emsa1/emsa1.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pk_pad/emsa1/emsa1.h b/src/pk_pad/emsa1/emsa1.h
index 28d856525..e95414ad3 100644
--- a/src/pk_pad/emsa1/emsa1.h
+++ b/src/pk_pad/emsa1/emsa1.h
@@ -23,6 +23,9 @@ class BOTAN_DLL EMSA1 : public EMSA
EMSA1(HashFunction* h) : hash(h) {}
~EMSA1() { delete hash; }
protected:
+ /**
+ * @return const pointer to the underlying hash
+ */
const HashFunction* hash_ptr() const { return hash; }
private:
void update(const byte[], u32bit);