|
Botan 3.10.0
Crypto and TLS for C&
|
#include <ascon_xof128.h>
Public Member Functions | |
| bool | accepts_input () const override |
| Ascon_XOF128 () | |
| size_t | block_size () const override |
| void | clear () |
| std::unique_ptr< XOF > | copy_state () const override |
| virtual Key_Length_Specification | key_spec () const |
| std::string | name () const override |
| std::unique_ptr< XOF > | new_object () const override |
| template<size_t count> | |
| std::array< uint8_t, count > | output () |
| template<concepts::resizable_byte_buffer T = secure_vector<uint8_t>> | |
| T | output (size_t bytes) |
| void | output (std::span< uint8_t > output) |
| uint8_t | output_next_byte () |
| std::vector< uint8_t > | output_stdvec (size_t bytes) |
| std::string | provider () const override |
| void | start (std::span< const uint8_t > salt={}, std::span< const uint8_t > key={}) |
| void | update (std::span< const uint8_t > input) |
| virtual bool | valid_salt_length (size_t salt_len) const |
Static Public Member Functions | |
| static std::unique_ptr< XOF > | create (std::string_view algo_spec, std::string_view provider="") |
| static std::unique_ptr< XOF > | create_or_throw (std::string_view algo_spec, std::string_view provider="") |
| static std::vector< std::string > | providers (std::string_view algo_spec) |
Ascon-XOF128 (NIST SP.800-232 Section 5.2)
Definition at line 21 of file ascon_xof128.h.
| Botan::Ascon_XOF128::Ascon_XOF128 | ( | ) |
Definition at line 35 of file ascon_xof128.cpp.
|
inlineoverridevirtual |
Typically, this is true for new objects and becomes false once output() was called for the first time.
Implements Botan::XOF.
Definition at line 31 of file ascon_xof128.h.
|
inlineoverridevirtual |
Implements Botan::XOF.
Definition at line 29 of file ascon_xof128.h.
|
inlineinherited |
Reset the state.
Definition at line 64 of file xof.h.
Referenced by Botan::Kyber_90s_Symmetric_Primitives::get_PRF(), Botan::Kyber_Modern_Symmetric_Primitives::get_PRF(), Botan::ML_KEM_Symmetric_Primitives::get_PRF(), Botan::Kyber_90s_Symmetric_Primitives::get_XOF(), Botan::Kyber_Modern_Symmetric_Primitives::get_XOF(), Botan::ML_KEM_Symmetric_Primitives::get_XOF(), and Botan::Dilithium_Symmetric_Primitives_Base::H().
|
overridevirtual |
Return a new XOF object with the same state as *this.
If the XOF is not yet in the output phase, it efficiently allows using several messages with a common prefix. Otherwise, the copied state will produce the same output bit stream as the original object at the time of this invocation.
This function should be called clone but for consistency with other classes it is called copy_state.
Implements Botan::XOF.
Definition at line 37 of file ascon_xof128.cpp.
|
staticinherited |
Create an instance based on a name, or return null if the algo/provider combination cannot be found. If provider is empty then best available is chosen.
Definition at line 28 of file xof.cpp.
References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg_count(), and provider().
Referenced by create_or_throw(), and ~XOF().
|
staticinherited |
Create an instance based on a name If provider is empty then best available is chosen.
| algo_spec | algorithm name |
| provider | provider implementation to use Throws Lookup_Error if not found. |
Definition at line 54 of file xof.cpp.
References create(), and provider().
Referenced by Botan::AES_256_CTR_XOF::AES_256_CTR_XOF(), Botan::Classic_McEliece_Parameters::prg(), and ~XOF().
|
inlinevirtualinherited |
Reimplemented in Botan::AES_256_CTR_XOF.
Definition at line 97 of file xof.h.
Referenced by start().
|
inlineoverridevirtual |
Implements Botan::XOF.
Definition at line 25 of file ascon_xof128.h.
|
overridevirtual |
Implements Botan::XOF.
Definition at line 41 of file ascon_xof128.cpp.
|
inlineinherited |
|
inlineinherited |
bytes output bytes as the specified container type T. Definition at line 153 of file xof.h.
Referenced by Botan::FrodoMatrix::make_sample_generator(), output(), output_stdvec(), and Botan::Kyber_Symmetric_Primitives::PRF().
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Convenience overload to generate a std::vector<uint8_t>. Same as calling XOF::output<std::vector<uint8_t>>().
bytes output bytes as a byte vector. Definition at line 175 of file xof.h.
References output().
|
inlineoverridevirtual |
Reimplemented from Botan::XOF.
Definition at line 27 of file ascon_xof128.h.
|
staticinherited |
| algo_spec | algorithm name |
Definition at line 62 of file xof.cpp.
References Botan::probe_providers_of().
Referenced by ~XOF().
|
inherited |
Some XOFs can be parameterized with a salt and/or key. If required, this must be called before calling XOF::update().
Definition at line 70 of file xof.cpp.
References Botan::fmt(), key_spec(), name(), and valid_salt_length().
|
inlineinherited |
Add input data to the XOF's internal state
| input | the data that shall be |
Definition at line 140 of file xof.h.
References start().
|
inlinevirtualinherited |
Reimplemented in Botan::AES_256_CTR_XOF, and Botan::cSHAKE_XOF.
Definition at line 89 of file xof.h.
Referenced by start().