/* $FreeBSD$ */ /* * Public domain. */ #ifndef _CHACHA_H #define _CHACHA_H #include struct chacha_ctx { u_int input[16]; }; #endif