]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/crypto/chacha20/_chacha.h
ping(8): Fix a mandoc related issue
[FreeBSD/FreeBSD.git] / sys / crypto / chacha20 / _chacha.h
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