diff options
Diffstat (limited to 'src/mac/cbc_mac/cbc_mac.h')
-rw-r--r-- | src/mac/cbc_mac/cbc_mac.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mac/cbc_mac/cbc_mac.h b/src/mac/cbc_mac/cbc_mac.h index ff2a8f3fa..5cc8adc67 100644 --- a/src/mac/cbc_mac/cbc_mac.h +++ b/src/mac/cbc_mac/cbc_mac.h @@ -19,9 +19,10 @@ namespace Botan { class BOTAN_DLL CBC_MAC : public MessageAuthenticationCode { public: - void clear(); std::string name() const; MessageAuthenticationCode* clone() const; + size_t output_length() const { return e->block_size(); } + void clear(); Key_Length_Specification key_spec() const { |