diff options
Diffstat (limited to 'src/lib/mac')
-rw-r--r-- | src/lib/mac/cbc_mac/cbc_mac.h | 2 | ||||
-rw-r--r-- | src/lib/mac/cmac/cmac.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/mac/cbc_mac/cbc_mac.h b/src/lib/mac/cbc_mac/cbc_mac.h index cd2ebd18f..4a3dece95 100644 --- a/src/lib/mac/cbc_mac/cbc_mac.h +++ b/src/lib/mac/cbc_mac/cbc_mac.h @@ -30,7 +30,7 @@ class BOTAN_DLL CBC_MAC final : public MessageAuthenticationCode } /** - * @param cipher the underlying block cipher to use + * @param cipher the block cipher to use */ explicit CBC_MAC(BlockCipher* cipher); diff --git a/src/lib/mac/cmac/cmac.h b/src/lib/mac/cmac/cmac.h index 0e973b79d..ada55ea6b 100644 --- a/src/lib/mac/cmac/cmac.h +++ b/src/lib/mac/cmac/cmac.h @@ -38,7 +38,7 @@ class BOTAN_DLL CMAC final : public MessageAuthenticationCode static secure_vector<byte> poly_double(const secure_vector<byte>& in); /** - * @param cipher the underlying block cipher to use + * @param cipher the block cipher to use */ explicit CMAC(BlockCipher* cipher); |