diff options
author | Daniel Neus <[email protected]> | 2016-12-19 11:10:25 +0100 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2016-12-19 21:26:15 +0100 |
commit | 7d25bc286afe3aa39701baa3d1452a4c11aa7c73 (patch) | |
tree | b594fcdff1061c1fda23cae62fa31d0ed69f17d7 /src | |
parent | 97905c5243bfbdcb00a07f7915c58981e6890bbe (diff) |
ISO-9796-2 doxygen build fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/pk_pad/iso9796/iso9796.h | 8 |
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) {} |