You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wownero-seed/src/pbkdf2.h

21 lines
354 B

/*
Copyright (c) 2020 tevador <tevador@gmail.com>
All rights reserved.
*/
#pragma once
#include <stddef.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void pbkdf2_hmac_sha256(const uint8_t* password, size_t pw_size,
const uint8_t* salt, size_t salt_size,
int iterations, uint8_t* key, size_t key_size);
#ifdef __cplusplus
}
#endif