aboutsummaryrefslogtreecommitdiff
path: root/src/cc20rng/cc20_prng.h
blob: 6940f5394a75814af1c0c7c09475812985378de4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __STM32_CHACHA20_H
#define __STM32_CHACHA20_H

#include <stdint.h>

#define CHACHA20_MAX_BLOCK_COUNTER	0xffffffff
#define CHACHA20_NUM_WORDS              16
#define CHACHA20_BLOCK_SIZE		(CHACHA20_NUM_WORDS * 4)

struct cc20_state {
    uint32_t i[CHACHA20_NUM_WORDS];
};

extern void chacha20_prng_reseed(struct cc20_state *cc, uint32_t *entropy);
extern void chacha20_prng_block(struct cc20_state *cc, uint32_t block_counter, struct cc20_state *out);
extern int chacha20_prng_self_test();

#endif /* __STM32_CHACHA20_H */