xref: /freebsd/sys/crypto/chacha20/_chacha.h (revision d8ffc21c5ca6f7d4f2d9a65dc6308699af0b6a01)
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