summaryrefslogblamecommitdiffstats
path: root/freebsd/sys/crypto/chacha20/_chacha.h
blob: 20f8bb9a79487da417064994c4f4e2fb13565a65 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                        
/* $FreeBSD$ */
/*
 * Public domain.
 */

#ifndef _CHACHA_H
#define _CHACHA_H

#include <sys/types.h>

struct chacha_ctx {
	u_int input[16];
};

#endif