blob: ac17d4ddd584e33a70be7d00e5dbc8b20853aac2 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0"
*
* Written by Nir Drucker and Shay Gueron
* AWS Cryptographic Algorithms Group.
* (ndrucker@amazon.com, gueron@amazon.com)
*/
#pragma once
#include "aes_wrap.h"
//////////////////////////////
// Types
/////////////////////////////
typedef struct aes_ctr_prf_state_s
{
uint128_t ctr;
uint128_t buffer;
aes256_ks_t ks_ptr;
uint32_t rem_invokations;
uint8_t pos;
} aes_ctr_prf_state_t;
//////////////////////////////
// Methods
/////////////////////////////
ret_t
init_aes_ctr_prf_state(OUT aes_ctr_prf_state_t *s,
IN uint32_t max_invokations,
IN const seed_t *seed);
ret_t
aes_ctr_prf(OUT uint8_t *a, IN OUT aes_ctr_prf_state_t *s, IN uint32_t len);
_INLINE_ void
finalize_aes_ctr_prf(IN OUT aes_ctr_prf_state_t *s)
{
aes256_free_ks(&s->ks_ptr);
secure_clean((uint8_t *)s, sizeof(*s));
}
_INLINE_ void
aes_ctr_prf_state_cleanup(IN OUT aes_ctr_prf_state_t *s)
{
finalize_aes_ctr_prf(s);
}
|