xref: /freebsd/sys/crypto/chacha20/_chacha.h (revision dacc43df34a7da82747af82be62cb645eb36f6ca)
1 /* $FreeBSD$ */
2 /*
3  * Public domain.
4  */
5 
6 #ifndef _CHACHA_H
7 #define _CHACHA_H
8 
9 #include <sys/types.h>
10 
11 struct chacha_ctx {
12 	u_int input[16];
13 };
14 
15 #endif
16