freebsd-dev/sys/crypto/chacha20/_chacha.h
Conrad Meyer f449384c4a Add explicit copyright text to trivial header
Reported by:	rgrimes
2018-10-22 01:27:11 +00:00

16 lines
152 B
C

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