#include <botan/pwdhash.h>
Go to the source code of this file.
|
void | Botan::argon2 (uint8_t output[], size_t output_len, const char *password, size_t password_len, const uint8_t salt[], size_t salt_len, const uint8_t key[], size_t key_len, const uint8_t ad[], size_t ad_len, uint8_t mode, size_t threads, size_t M, size_t t) |
|
bool | Botan::argon2_check_pwhash (const char *password, size_t password_len, const std::string &hash) |
|
std::string | Botan::argon2_generate_pwhash (const char *password, size_t password_len, RandomNumberGenerator &rng, size_t p, size_t M, size_t t, uint8_t y=2, size_t salt_len=16, size_t output_len=32) |
|