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