]> git.cryptolib.org Git - arm-crypto-lib.git/blob - prf_tls12/prf_tls12.h
now with function
[arm-crypto-lib.git] / prf_tls12 / prf_tls12.h
1 /* prf_tls12.h */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2011 Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef PRF_TLS12_H_
21 #define PRF_TLS12_H_
22
23 #include <stdint.h>
24 #include <crypto/hashfunction_descriptor.h>
25 #include <crypto/hfal-basic.h>
26 #include <crypto/hfal-hmac.h>
27
28 typedef struct{
29         hfhmacgen_ctx_t mainctx;
30         uint16_t blocklength_b;
31         uint16_t bufferlength_b;
32         uint8_t* seed_buffer;
33 } prf_tls12_ctx_t;
34
35 uint8_t prf_tls12_init(prf_tls12_ctx_t* ctx, const hfdesc_t* hash,
36         const void* key, uint16_t keylength_b,
37         const void* seed, uint16_t seedlength_b);
38
39 uint8_t prf_tls12_init_w_label(prf_tls12_ctx_t* ctx, const hfdesc_t* hash,
40         const void* key, uint16_t keylength_b,
41         const void* label, uint16_t labellength_B,
42         const void* seed, uint16_t seedlength_b);
43
44 void prf_tls12_free(prf_tls12_ctx_t* ctx);
45 uint8_t prf_tls12_next(void* dest, prf_tls12_ctx_t* ctx);
46 uint8_t prf_tls12_fill(void* dest, uint16_t length_B, prf_tls12_ctx_t* ctx);
47
48
49 #endif /* PRF_TLS12_H_ */