Botan 3.11.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 159 of file cryptobox.cpp.

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

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

References Botan::CryptoBox::decrypt_bin().