freebsd-dev/sys/crypto/chacha20/_chacha.h

16 lines
152 B
C
Raw Normal View History

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