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