CryptoBox

This namespace holds various high-level crypto functions

Members

Static functions

decrypt
string decrypt(string input, string passphrase)

Decrypt a message encrypted with CryptoBox::encrypt

decrypt
string decrypt(const(ubyte)* input, size_t input_len, string passphrase)

Decrypt a message encrypted with CryptoBox::encrypt

encrypt
string encrypt(const(ubyte)* input, size_t input_len, string passphrase, RandomNumberGenerator rng)

Encrypt a message using a passphrase

Meta