Botan 3.6.1
Crypto and TLS for C&
|
#include <salsa20.h>
Public Member Functions | |
size_t | buffer_size () const override |
void | cipher (const uint8_t in[], uint8_t out[], size_t len) |
void | cipher (std::span< const uint8_t > in, std::span< uint8_t > out) |
void | cipher1 (std::span< uint8_t > buf) |
void | cipher1 (uint8_t buf[], size_t len) |
void | clear () override |
StreamCipher * | clone () const |
void | decrypt (std::span< uint8_t > inout) |
size_t | default_iv_length () const override |
void | encipher (std::span< uint8_t > inout) |
void | encrypt (std::span< uint8_t > inout) |
bool | has_keying_material () const override |
Key_Length_Specification | key_spec () const override |
template<concepts::resizable_byte_buffer T = secure_vector<uint8_t>> | |
T | keystream_bytes (size_t bytes) |
size_t | maximum_keylength () const |
size_t | minimum_keylength () const |
std::string | name () const override |
std::unique_ptr< StreamCipher > | new_object () const override |
virtual std::string | provider () const |
void | seek (uint64_t offset) override |
void | set_iv (const uint8_t iv[], size_t iv_len) |
void | set_iv (std::span< const uint8_t > iv) |
void | set_key (const SymmetricKey &key) |
void | set_key (const uint8_t key[], size_t length) |
void | set_key (std::span< const uint8_t > key) |
bool | valid_iv_length (size_t iv_len) const override |
bool | valid_keylength (size_t length) const |
void | write_keystream (std::span< uint8_t > out) |
void | write_keystream (uint8_t out[], size_t len) |
Static Public Member Functions | |
static std::unique_ptr< StreamCipher > | create (std::string_view algo_spec, std::string_view provider="") |
static std::unique_ptr< StreamCipher > | create_or_throw (std::string_view algo_spec, std::string_view provider="") |
static void | hsalsa20 (uint32_t output[8], const uint32_t input[16]) |
static std::vector< std::string > | providers (std::string_view algo_spec) |
static void | salsa_core (uint8_t output[64], const uint32_t input[16], size_t rounds) |
Protected Member Functions | |
void | assert_key_material_set () const |
void | assert_key_material_set (bool predicate) const |
void | cipher_bytes (const uint8_t in[], uint8_t out[], size_t length) override |
virtual void | generate_keystream (uint8_t out[], size_t len) |
void | set_iv_bytes (const uint8_t iv[], size_t iv_len) override |
|
inlineprotectedinherited |
Definition at line 139 of file sym_algo.h.
References Botan::SymmetricAlgorithm::assert_key_material_set().
Referenced by Botan::SymmetricAlgorithm::assert_key_material_set(), cipher_bytes(), Botan::AES_128::decrypt_n(), Botan::AES_192::decrypt_n(), Botan::AES_256::decrypt_n(), Botan::ARIA_128::decrypt_n(), Botan::ARIA_192::decrypt_n(), Botan::ARIA_256::decrypt_n(), Botan::Blowfish::decrypt_n(), Botan::Camellia_128::decrypt_n(), Botan::Camellia_192::decrypt_n(), Botan::Camellia_256::decrypt_n(), Botan::CAST_128::decrypt_n(), Botan::DES::decrypt_n(), Botan::GOST_28147_89::decrypt_n(), Botan::IDEA::decrypt_n(), Botan::Kuznyechik::decrypt_n(), Botan::Lion::decrypt_n(), Botan::Noekeon::decrypt_n(), Botan::SEED::decrypt_n(), Botan::Serpent::decrypt_n(), Botan::SHACAL2::decrypt_n(), Botan::SM4::decrypt_n(), Botan::Threefish_512::decrypt_n(), Botan::TripleDES::decrypt_n(), Botan::Twofish::decrypt_n(), Botan::AES_128::encrypt_n(), Botan::AES_192::encrypt_n(), Botan::AES_256::encrypt_n(), Botan::ARIA_128::encrypt_n(), Botan::ARIA_192::encrypt_n(), Botan::ARIA_256::encrypt_n(), Botan::Blowfish::encrypt_n(), Botan::Camellia_128::encrypt_n(), Botan::Camellia_192::encrypt_n(), Botan::Camellia_256::encrypt_n(), Botan::CAST_128::encrypt_n(), Botan::DES::encrypt_n(), Botan::GOST_28147_89::encrypt_n(), Botan::IDEA::encrypt_n(), Botan::Kuznyechik::encrypt_n(), Botan::Lion::encrypt_n(), Botan::Noekeon::encrypt_n(), Botan::SEED::encrypt_n(), Botan::Serpent::encrypt_n(), Botan::SHACAL2::encrypt_n(), Botan::SM4::encrypt_n(), Botan::Threefish_512::encrypt_n(), Botan::TripleDES::encrypt_n(), Botan::Twofish::encrypt_n(), Botan::GHASH::final(), Botan::GHASH::ghash_update(), Botan::ChaCha::seek(), Botan::CTR_BE::seek(), seek(), Botan::OCB_Mode::set_associated_data_n(), set_iv_bytes(), Botan::GHASH::update(), and Botan::GHASH::update_associated_data().
|
inlineprotectedinherited |
Definition at line 141 of file sym_algo.h.
|
overridevirtual |
Return the optimium buffer size to use with this cipher
Most stream ciphers internally produce blocks of bytes. This function returns that block size. Aligning buffer sizes to a multiple of this size may improve performance by reducing internal buffering overhead.
Note the return value of this function may change for any particular algorithm due to changes in the implementation from release to release, or changes in the runtime environment (such as CPUID indicating availability of an optimized implementation). It is not intrinsic to the algorithm; it is just a suggestion for gaining best performance.
Implements Botan::StreamCipher.
Definition at line 168 of file salsa20.cpp.
|
inlineinherited |
Encrypt or decrypt a message
Processes all bytes plain/ciphertext from in
and writes the result to out
.
in | the plaintext |
out | the byte array to hold the output, i.e. the ciphertext |
len | the length of both in and out in bytes |
Definition at line 60 of file stream_cipher.h.
Referenced by Botan::StreamCipher::create(), Botan::Sodium::crypto_stream_salsa20_xor_ic(), and Botan::Sodium::crypto_stream_xsalsa20_xor_ic().
|
inlineinherited |
Encrypt or decrypt a message
in | the plaintext |
out | the byte array to hold the output, i.e. the ciphertext with at least the same size as in |
Definition at line 68 of file stream_cipher.h.
References BOTAN_ARG_CHECK.
|
inlineinherited |
Encrypt or decrypt a message The message is encrypted/decrypted in place.
buf | the plaintext / ciphertext |
Definition at line 120 of file stream_cipher.h.
|
inlineinherited |
Encrypt or decrypt a message The message is encrypted/decrypted in place.
buf | the plaintext / ciphertext |
len | the length of buf in bytes |
Definition at line 113 of file stream_cipher.h.
Referenced by Botan::StreamCipher::generate_keystream().
|
overrideprotectedvirtual |
Encrypt or decrypt a message
Implements Botan::StreamCipher.
Definition at line 102 of file salsa20.cpp.
References Botan::SymmetricAlgorithm::assert_key_material_set(), salsa_core(), and Botan::xor_buf().
|
overridevirtual |
Reset the internal state. This includes not just the key, but any partial message that may have been in process.
Implements Botan::SymmetricAlgorithm.
Definition at line 260 of file salsa20.cpp.
References Botan::zap().
|
inlineinherited |
Definition at line 199 of file stream_cipher.h.
|
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 |
Definition at line 40 of file stream_cipher.cpp.
References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_as_integer(), Botan::SCAN_Name::arg_count(), Botan::SCAN_Name::arg_count_between(), BOTAN_UNUSED, Botan::StreamCipher::cipher(), Botan::BlockCipher::create(), and Botan::StreamCipher::provider().
Referenced by Botan::BlockCipher::create(), Botan::Cipher_Mode::create(), and Botan::StreamCipher::create_or_throw().
|
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 a Lookup_Error if the algo/provider combination cannot be found |
Definition at line 122 of file stream_cipher.cpp.
References Botan::StreamCipher::create(), and Botan::StreamCipher::provider().
Referenced by Botan::ChaCha_RNG::ChaCha_RNG(), Botan::ChaCha_RNG::ChaCha_RNG(), Botan::ChaCha_RNG::ChaCha_RNG(), Botan::ChaCha_RNG::ChaCha_RNG(), Botan::ChaCha_RNG::ChaCha_RNG(), Botan::Sodium::crypto_secretbox_detached(), Botan::Sodium::crypto_secretbox_open_detached(), Botan::Sodium::crypto_secretbox_xsalsa20poly1305(), Botan::Sodium::crypto_secretbox_xsalsa20poly1305_open(), Botan::Sodium::crypto_stream_chacha20(), Botan::Sodium::crypto_stream_chacha20_ietf(), Botan::Sodium::crypto_stream_chacha20_ietf_xor_ic(), Botan::Sodium::crypto_stream_chacha20_xor_ic(), Botan::Sodium::crypto_stream_xchacha20(), and Botan::Sodium::crypto_stream_xchacha20_xor_ic().
|
inlineinherited |
Decrypt a message in place The message is decrypted in place.
inout | the plaintext / ciphertext |
Definition at line 141 of file stream_cipher.h.
|
overridevirtual |
Return the default (preferred) nonce length
If this function returns zero, then this cipher does not support nonces; in this case any call to set_iv with a (non-empty) value will fail.
Default implementation returns 0
Reimplemented from Botan::StreamCipher.
Definition at line 241 of file salsa20.cpp.
|
inlineinherited |
Encrypt a message The message is encrypted/decrypted in place.
inout | the plaintext / ciphertext |
Definition at line 127 of file stream_cipher.h.
|
inlineinherited |
Encrypt a message The message is encrypted in place.
inout | the plaintext / ciphertext |
Definition at line 134 of file stream_cipher.h.
|
protectedvirtualinherited |
Write keystream bytes to a buffer
Definition at line 137 of file stream_cipher.cpp.
References Botan::StreamCipher::cipher1(), and Botan::clear_mem().
|
overridevirtual |
Implements Botan::SymmetricAlgorithm.
Definition at line 164 of file salsa20.cpp.
|
static |
Definition at line 31 of file salsa20.cpp.
Referenced by Botan::Sodium::crypto_core_hsalsa20(), and set_iv_bytes().
|
overridevirtual |
Implements Botan::SymmetricAlgorithm.
Definition at line 245 of file salsa20.cpp.
|
inlineinherited |
Get bytes
from the keystream
The bytes are written into a continous byte buffer of your choosing.
bytes | The number of bytes to be produced |
Definition at line 101 of file stream_cipher.h.
References T.
|
inlineinherited |
Definition at line 95 of file sym_algo.h.
|
inlineinherited |
Definition at line 100 of file sym_algo.h.
|
overridevirtual |
Implements Botan::SymmetricAlgorithm.
Definition at line 253 of file salsa20.cpp.
Referenced by set_iv_bytes().
|
overridevirtual |
Implements Botan::StreamCipher.
Definition at line 249 of file salsa20.cpp.
|
inlinevirtualinherited |
Reimplemented in Botan::ChaCha.
Definition at line 225 of file stream_cipher.h.
Referenced by Botan::StreamCipher::create(), and Botan::StreamCipher::create_or_throw().
|
staticinherited |
Definition at line 129 of file stream_cipher.cpp.
References Botan::probe_providers_of().
|
static |
Definition at line 62 of file salsa20.cpp.
References BOTAN_ASSERT_NOMSG, and Botan::store_le().
Referenced by cipher_bytes(), seek(), and set_iv_bytes().
|
overridevirtual |
Set the offset and the state used later to generate the keystream
Sets the state of the stream cipher and keystream according to the passed offset
, exactly as if offset
bytes had first been encrypted. The key and (if required) the IV have to be set before this can be called.
offset | the offset where we begin to generate the keystream |
Implements Botan::StreamCipher.
Definition at line 267 of file salsa20.cpp.
References Botan::SymmetricAlgorithm::assert_key_material_set(), Botan::load_le(), salsa_core(), and Botan::store_le().
Referenced by Botan::Sodium::crypto_stream_salsa20_xor_ic(), and Botan::Sodium::crypto_stream_xsalsa20_xor_ic().
|
inlineinherited |
Resync the cipher using the IV
Load IV
into the stream cipher state. This should happen after the key is set (set_key()) and before any operation (encrypt(), decrypt() or seek()) is called.
If the cipher does not support IVs, then a call with an empty IV will be accepted and any other length will cause an Invalid_IV_Length exception.
iv | the initialization vector |
iv_len | the length of the IV in bytes |
Definition at line 171 of file stream_cipher.h.
Referenced by Botan::Sodium::crypto_stream_salsa20(), Botan::Sodium::crypto_stream_salsa20_xor_ic(), Botan::Sodium::crypto_stream_xsalsa20(), Botan::Sodium::crypto_stream_xsalsa20_xor_ic(), Botan::Sodium::randombytes_buf_deterministic(), and Botan::SIV_Mode::set_ctr_iv().
|
inlineinherited |
Resync the cipher using the IV
iv | the initialization vector |
Invalid_IV_Length | if an incompatible IV was passed. |
Definition at line 178 of file stream_cipher.h.
|
overrideprotectedvirtual |
Resync the cipher using the IV
Implements Botan::StreamCipher.
Definition at line 188 of file salsa20.cpp.
References Botan::SymmetricAlgorithm::assert_key_material_set(), hsalsa20(), Botan::load_le(), name(), salsa_core(), and valid_iv_length().
|
inlineinherited |
Set the symmetric key of this object.
key | the SymmetricKey to be set. |
Definition at line 113 of file sym_algo.h.
References Botan::OctetString::begin(), Botan::OctetString::length(), and Botan::SymmetricAlgorithm::set_key().
Referenced by Botan::create_aes_row_generator(), Botan::Sodium::crypto_stream_salsa20(), Botan::Sodium::crypto_stream_salsa20_xor_ic(), Botan::Sodium::crypto_stream_xsalsa20(), Botan::Sodium::crypto_stream_xsalsa20_xor_ic(), Botan::FPE::fe1_decrypt(), Botan::FPE::fe1_encrypt(), Botan::Sphincs_Hash_Functions_Sha2::PRF_msg(), Botan::Sodium::randombytes_buf_deterministic(), and Botan::SymmetricAlgorithm::set_key().
|
inlineinherited |
Set the symmetric key of this object.
key | the to be set as a byte array. |
length | in bytes of key param |
Definition at line 126 of file sym_algo.h.
References Botan::SymmetricAlgorithm::set_key().
Referenced by Botan::SymmetricAlgorithm::set_key().
|
inherited |
Set the symmetric key of this object.
key | the contiguous byte range to be set. |
Definition at line 17 of file sym_algo.cpp.
References Botan::SymmetricAlgorithm::name(), and Botan::SymmetricAlgorithm::valid_keylength().
|
overridevirtual |
iv_len | the length of the IV in bytes |
Reimplemented from Botan::StreamCipher.
Definition at line 237 of file salsa20.cpp.
Referenced by set_iv_bytes().
|
inlineinherited |
Check whether a given key length is valid for this algorithm.
length | the key length to be checked. |
Definition at line 107 of file sym_algo.h.
Referenced by Botan::SymmetricAlgorithm::set_key().
|
inlineinherited |
Fill a given buffer with keystream bytes
The contents of out
are ignored/overwritten
out | the byte array to hold the keystream |
Definition at line 91 of file stream_cipher.h.
|
inlineinherited |
Write keystream bytes to a buffer
The contents of out
are ignored/overwritten
out | the byte array to hold the keystream |
len | the length of out in bytes |
Definition at line 82 of file stream_cipher.h.
Referenced by Botan::Sodium::crypto_stream_salsa20(), Botan::Sodium::crypto_stream_xsalsa20(), and Botan::Sodium::randombytes_buf_deterministic().