aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-19 19:31:09 -0500
committerJack Lloyd <[email protected]>2016-12-19 19:31:09 -0500
commit78e6130d8790dac7af2d01654b536a7087b2f041 (patch)
tree7f3831a77c12d8c36e97c3e4cef661c2ac4ef317 /src
parentc304620247b5281950eb58b13bada74ca20c6477 (diff)
parent7d25bc286afe3aa39701baa3d1452a4c11aa7c73 (diff)
Merge GH #781 Fix Doxygen comments for ISO 9796 padding
Diffstat (limited to 'src')
-rw-r--r--src/lib/pk_pad/iso9796/iso9796.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/pk_pad/iso9796/iso9796.h b/src/lib/pk_pad/iso9796/iso9796.h
index 81e008e47..1959ed3f3 100644
--- a/src/lib/pk_pad/iso9796/iso9796.h
+++ b/src/lib/pk_pad/iso9796/iso9796.h
@@ -21,15 +21,15 @@ class BOTAN_DLL ISO_9796_DS2 final : public EMSA
public:
/**
* @param hash function to use
- * @param use implicit ISO trailer
+ * @param implicit whether or not the trailer is implicit
*/
explicit ISO_9796_DS2(HashFunction* hash, bool implicit = false) : m_hash(hash), m_implicit(implicit),
m_SALT_SIZE(hash->output_length()) {}
/**
* @param hash function to use
- * @param whether or not the trailer is implicit
- * @param size of the salt to use in bytes
+ * @param implicit whether or not the trailer is implicit
+ * @param salt_size size of the salt to use in bytes
*/
ISO_9796_DS2(HashFunction* hash, bool implicit, size_t salt_size) : m_hash(hash), m_implicit(implicit),
m_SALT_SIZE(salt_size) {}
@@ -63,7 +63,7 @@ class BOTAN_DLL ISO_9796_DS3 final : public EMSA
public:
/**
* @param hash function to use
- * @param whether or not the trailer is implicit
+ * @param implicit whether or not the trailer is implicit
*/
ISO_9796_DS3(HashFunction* hash, bool implicit = false) : m_hash(hash), m_implicit(implicit)
{}