8#ifndef BOTAN_ANSI_X919_MAC_H_
9#define BOTAN_ANSI_X919_MAC_H_
11#include <botan/block_cipher.h>
21 void clear()
override;
22 std::string
name()
const override;
26 std::unique_ptr<MessageAuthenticationCode>
new_object()
const override;
38 void add_data(std::span<const uint8_t>)
override;
39 void final_result(std::span<uint8_t>)
override;
40 void key_schedule(std::span<const uint8_t>)
override;
42 std::unique_ptr<BlockCipher> m_des1, m_des2;
size_t output_length() const override
std::unique_ptr< MessageAuthenticationCode > new_object() const override
Key_Length_Specification key_spec() const override
std::string name() const override
ANSI_X919_MAC & operator=(const ANSI_X919_MAC &)=delete
bool has_keying_material() const override
ANSI_X919_MAC(const ANSI_X919_MAC &)=delete
int(* final)(unsigned char *, CTX *)
std::vector< T, secure_allocator< T > > secure_vector