wpa_supplicant / hostapd
2.5
|
TLS PRF (SHA1 + MD5) More...
Functions | |
int | tls_prf_sha1_md5 (const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) |
Pseudo-Random Function for TLS (TLS-PRF, RFC 2246) More... | |
TLS PRF (SHA1 + MD5)
int tls_prf_sha1_md5 | ( | const u8 * | secret, |
size_t | secret_len, | ||
const char * | label, | ||
const u8 * | seed, | ||
size_t | seed_len, | ||
u8 * | out, | ||
size_t | outlen | ||
) |
Pseudo-Random Function for TLS (TLS-PRF, RFC 2246)
secret | Key for PRF |
secret_len | Length of the key in bytes |
label | A unique label for each purpose of the PRF |
seed | Seed value to bind into the key |
seed_len | Length of the seed |
out | Buffer for the generated pseudo-random key |
outlen | Number of bytes of key to generate |
This function is used to derive new, cryptographically separate keys from a given key in TLS. This PRF is defined in RFC 2246, Chapter 5.