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