8#ifndef BOTAN_SIPHASH_H_
9#define BOTAN_SIPHASH_H_
19 void clear()
override;
20 std::string
name()
const override;
22 std::unique_ptr<MessageAuthenticationCode>
new_object()
const override;
31 void add_data(std::span<const uint8_t> input)
override;
32 void final_result(std::span<uint8_t> output)
override;
33 void start_msg(std::span<const uint8_t> nonce)
override;
34 void key_schedule(std::span<const uint8_t> key)
override;
37 const size_t m_C, m_D;
41 size_t m_mbuf_pos = 0;
void final(uint8_t out[])
std::string name() const override
Key_Length_Specification key_spec() const override
SipHash(size_t c, size_t d)
bool has_keying_material() const override
size_t output_length() const override
std::unique_ptr< MessageAuthenticationCode > new_object() const override
std::vector< T, secure_allocator< T > > secure_vector