Botan 3.5.0
Crypto and TLS for C&
keccak.cpp
Go to the documentation of this file.
1/*
2* Keccak
3* (C) 2010,2016 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#include <botan/internal/keccak.h>
9
10#include <botan/exceptn.h>
11#include <botan/internal/fmt.h>
12#include <botan/internal/loadstor.h>
13
14namespace Botan {
15
16std::unique_ptr<HashFunction> Keccak_1600::copy_state() const {
17 return std::make_unique<Keccak_1600>(*this);
18}
19
20Keccak_1600::Keccak_1600(size_t output_bits) : m_keccak(2 * output_bits, 0, 0), m_output_length(output_bits / 8) {
21 // We only support the parameters for the SHA-3 proposal
22
23 if(output_bits != 224 && output_bits != 256 && output_bits != 384 && output_bits != 512) {
24 throw Invalid_Argument(fmt("Keccak_1600: Invalid output length {}", output_bits));
25 }
26}
27
28std::string Keccak_1600::name() const {
29 return fmt("Keccak-1600({})", m_output_length * 8);
30}
31
32std::unique_ptr<HashFunction> Keccak_1600::new_object() const {
33 return std::make_unique<Keccak_1600>(m_output_length * 8);
34}
35
37 m_keccak.clear();
38}
39
40std::string Keccak_1600::provider() const {
41 return m_keccak.provider();
42}
43
44void Keccak_1600::add_data(std::span<const uint8_t> input) {
45 m_keccak.absorb(input);
46}
47
48void Keccak_1600::final_result(std::span<uint8_t> output) {
49 m_keccak.finish();
50 m_keccak.squeeze(output);
51 clear();
52}
53
54} // namespace Botan
std::string provider() const override
Definition keccak.cpp:40
void clear() override
Definition keccak.cpp:36
std::unique_ptr< HashFunction > new_object() const override
Definition keccak.cpp:32
Keccak_1600(size_t output_bits=512)
Definition keccak.cpp:20
std::string name() const override
Definition keccak.cpp:28
std::unique_ptr< HashFunction > copy_state() const override
Definition keccak.cpp:16
void squeeze(std::span< uint8_t > output)
Expand output data from the current Keccak state.
std::string provider() const
void absorb(std::span< const uint8_t > input)
Absorb input data into the Keccak sponge.
void finish()
Add final padding (as provided in the constructor) and permute.
std::string fmt(std::string_view format, const T &... args)
Definition fmt.h:53