This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | SHA256_MAC_LEN 32 |
Functions | |
void | hmac_sha256_vector (const u8 *key, size_t key_len, size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) |
HMAC-SHA256 over data vector (RFC 2104). | |
void | hmac_sha256 (const u8 *key, size_t key_len, const u8 *data, size_t data_len, u8 *mac) |
HMAC-SHA256 over data buffer (RFC 2104). | |
void | sha256_prf (const u8 *key, size_t key_len, const char *label, const u8 *data, size_t data_len, u8 *buf, size_t buf_len) |
SHA256-based Pseudo-Random Function (IEEE 802.11r, 8.5A.3). |
Alternatively, this software may be distributed under the terms of BSD license.
See README and COPYING for more details.
Definition in file sha256.h.
|
HMAC-SHA256 over data buffer (RFC 2104).
Definition at line 105 of file sha256.c. Here is the call graph for this function: |
|
HMAC-SHA256 over data vector (RFC 2104).
Definition at line 33 of file sha256.c. Here is the call graph for this function: |
|
SHA256-based Pseudo-Random Function (IEEE 802.11r, 8.5A.3).
Definition at line 126 of file sha256.c. Here is the call graph for this function: |