We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This is a set of simple routines that encrypt some data using a passphrase. There are defined in the header botan.constructs.cryptobox.
botan.constructs.cryptobox
string encrypt(in ubyte* input, size_t input_len, in string passphrase, RandomNumberGenerator rng);
Encrypt the contents using passphrase.
passphrase
string decrypt(in ubyte* input, size_t input_len, in string passphrase); string decrypt(in string input, in string passphrase);
Decrypts something encrypted with encrypt.
There was an error while loading. Please reload this page.