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;
35 void add_data(std::span<const uint8_t> input)
override;
36 void final_result(std::span<uint8_t> output)
override;
37 void key_schedule(std::span<const uint8_t> key)
override;
39 std::unique_ptr<BlockCipher> m_des1, m_des2;
41 size_t m_position = 0;
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
bool has_keying_material() const override
void final(uint8_t out[])
std::vector< T, secure_allocator< T > > secure_vector