wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros | Functions
sha1.h File Reference

SHA1 hash implementation and interface functions. More...

Go to the source code of this file.

Macros

#define SHA1_MAC_LEN   20
 

Functions

int hmac_sha1_vector (const u8 *key, size_t key_len, size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac)
 HMAC-SHA1 over data vector (RFC 2104) More...
 
int hmac_sha1 (const u8 *key, size_t key_len, const u8 *data, size_t data_len, u8 *mac)
 HMAC-SHA1 over data buffer (RFC 2104) More...
 
int sha1_prf (const u8 *key, size_t key_len, const char *label, const u8 *data, size_t data_len, u8 *buf, size_t buf_len)
 SHA1-based Pseudo-Random Function (PRF) (IEEE 802.11i, 8.5.1.1) More...
 
int sha1_t_prf (const u8 *key, size_t key_len, const char *label, const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len)
 EAP-FAST Pseudo-Random Function (T-PRF) More...
 
int __must_check 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...
 
int pbkdf2_sha1 (const char *passphrase, const u8 *ssid, size_t ssid_len, int iterations, u8 *buf, size_t buflen)
 SHA1-based key derivation function (PBKDF2) for IEEE 802.11i. More...
 

Detailed Description

SHA1 hash implementation and interface functions.

Function Documentation

int hmac_sha1 ( const u8 *  key,
size_t  key_len,
const u8 *  data,
size_t  data_len,
u8 *  mac 
)

HMAC-SHA1 over data buffer (RFC 2104)

Parameters
keyKey for HMAC operations
key_lenLength of the key in bytes
dataPointers to the data area
data_lenLength of the data area
macBuffer for the hash (20 bytes)
Returns
0 on success, -1 of failure
int hmac_sha1_vector ( const u8 *  key,
size_t  key_len,
size_t  num_elem,
const u8 *  addr[],
const size_t *  len,
u8 *  mac 
)

HMAC-SHA1 over data vector (RFC 2104)

Parameters
keyKey for HMAC operations
key_lenLength of the key in bytes
num_elemNumber of elements in the data vector
addrPointers to the data areas
lenLengths of the data blocks
macBuffer for the hash (20 bytes)
Returns
0 on success, -1 on failure
int pbkdf2_sha1 ( const char *  passphrase,
const u8 *  ssid,
size_t  ssid_len,
int  iterations,
u8 *  buf,
size_t  buflen 
)

SHA1-based key derivation function (PBKDF2) for IEEE 802.11i.

Parameters
passphraseASCII passphrase
ssidSSID
ssid_lenSSID length in bytes
iterationsNumber of iterations to run
bufBuffer for the generated key
buflenLength of the buffer in bytes
Returns
0 on success, -1 of failure

This function is used to derive PSK for WPA-PSK. For this protocol, iterations is set to 4096 and buflen to 32. This function is described in IEEE Std 802.11-2004, Clause H.4. The main construction is from PKCS#5 v2.0.

int sha1_prf ( const u8 *  key,
size_t  key_len,
const char *  label,
const u8 *  data,
size_t  data_len,
u8 *  buf,
size_t  buf_len 
)

SHA1-based Pseudo-Random Function (PRF) (IEEE 802.11i, 8.5.1.1)

Parameters
keyKey for PRF
key_lenLength of the key in bytes
labelA unique label for each purpose of the PRF
dataExtra data to bind into the key
data_lenLength of the data
bufBuffer for the generated pseudo-random key
buf_lenNumber of bytes of key to generate
Returns
0 on success, -1 of failure

This function is used to derive new, cryptographically separate keys from a given key (e.g., PMK in IEEE 802.11i).

int sha1_t_prf ( const u8 *  key,
size_t  key_len,
const char *  label,
const u8 *  seed,
size_t  seed_len,
u8 *  buf,
size_t  buf_len 
)

EAP-FAST Pseudo-Random Function (T-PRF)

Parameters
keyKey for PRF
key_lenLength of the key in bytes
labelA unique label for each purpose of the PRF
seedSeed value to bind into the key
seed_lenLength of the seed
bufBuffer for the generated pseudo-random key
buf_lenNumber of bytes of key to generate
Returns
0 on success, -1 of failure

This function is used to derive new, cryptographically separate keys from a given key for EAP-FAST. T-PRF is defined in RFC 4851, Section 5.5.

int __must_check 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)

Parameters
secretKey for PRF
secret_lenLength of the key in bytes
labelA unique label for each purpose of the PRF
seedSeed value to bind into the key
seed_lenLength of the seed
outBuffer for the generated pseudo-random key
outlenNumber of bytes of key to generate
Returns
0 on success, -1 on failure.

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.