forked from devnoname120/vitanpupdatelinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sha256.h
27 lines (22 loc) · 904 Bytes
/
sha256.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* SHA256 hash implementation and interface functions
* Copyright (c) 2003-2011, Jouni Malinen <[email protected]>
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
#ifndef SHA256_H
#define SHA256_H
#include <stdint.h>
#include <stddef.h>
#define SHA256_MAC_LEN 32
int hmac_sha256_vector(const uint8_t *key, size_t key_len, size_t num_elem,
const uint8_t *addr[], const size_t *len, uint8_t *mac);
int hmac_sha256(const uint8_t *key, size_t key_len, const uint8_t *data,
size_t data_len, uint8_t *mac);
void sha256_prf(const uint8_t *key, size_t key_len, const char *label,
const uint8_t *data, size_t data_len, uint8_t *buf, size_t buf_len);
void tls_prf_sha256(const uint8_t *secret, size_t secret_len,
const char *label, const uint8_t *seed, size_t seed_len,
uint8_t *out, size_t outlen);
#endif /* SHA256_H */