mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 16:18:54 -04:00
15 lines
152 B
C
15 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
|