Botan 3.9.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 158 of file cryptobox.cpp.

158 {
159 return CryptoBox::decrypt(input.data(), input.size(), passphrase);
160}
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 154 of file cryptobox.cpp.

154 {
155 return CryptoBox::decrypt_bin(input.data(), input.size(), passphrase);
156}
secure_vector< uint8_t > decrypt_bin(const uint8_t input[], size_t input_len, std::string_view passphrase)
Definition cryptobox.cpp:96

References Botan::CryptoBox::decrypt_bin().