sha256.h
Go to the documentation of this file.00001
00016 #ifndef SHA256_H
00017 #define SHA256_H
00018
00019 #define SHA256_MAC_LEN 32
00020
00021 void hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
00022 const u8 *addr[], const size_t *len, u8 *mac);
00023 void hmac_sha256(const u8 *key, size_t key_len, const u8 *data,
00024 size_t data_len, u8 *mac);
00025 void sha256_prf(const u8 *key, size_t key_len, const char *label,
00026 const u8 *data, size_t data_len, u8 *buf, size_t buf_len);
00027
00028 #endif
00029