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