Botan 3.13.0
Crypto and TLS for C&
Botan::CryptoBox::BOTAN_DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS Namespace Reference

Functions

std::string decrypt (std::span< const uint8_t > input, std::string_view passphrase)
secure_vector< uint8_t > decrypt_bin (std::span< const uint8_t > input, std::string_view passphrase)

Function Documentation

◆ decrypt()

std::string Botan::CryptoBox::BOTAN_DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS::decrypt ( std::span< const uint8_t > input,
std::string_view passphrase )

Definition at line 161 of file cryptobox.cpp.

161 {
162 return CryptoBox::decrypt(input.data(), input.size(), passphrase);
163}
std::string decrypt(const uint8_t input[], size_t input_len, std::string_view passphrase)

References Botan::CryptoBox::decrypt().

◆ decrypt_bin()

secure_vector< uint8_t > Botan::CryptoBox::BOTAN_DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS::decrypt_bin ( std::span< const uint8_t > input,
std::string_view passphrase )

Definition at line 157 of file cryptobox.cpp.

157 {
158 return CryptoBox::decrypt_bin(input.data(), input.size(), passphrase);
159}
secure_vector< uint8_t > decrypt_bin(const uint8_t input[], size_t input_len, std::string_view passphrase)
Definition cryptobox.cpp:99

References Botan::CryptoBox::decrypt_bin().