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