8#ifndef BOTAN_CRYPTOBOX_H__
9#define BOTAN_CRYPTOBOX_H__
28BOTAN_DLL std::string
encrypt(
const byte input[],
size_t input_len,
29 const std::string& passphrase,
30 RandomNumberGenerator& rng);
38BOTAN_DLL std::string
decrypt(
const byte input[],
size_t input_len,
39 const std::string& passphrase);
46BOTAN_DLL std::string
decrypt(
const std::string& input,
47 const std::string& passphrase);
std::string encrypt(const byte input[], size_t input_len, const std::string &passphrase, RandomNumberGenerator &rng)
std::string decrypt(const byte input[], size_t input_len, const std::string &passphrase)