aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto/chacha20/_chacha.h
blob: 2a9ea9fd489b92b2ef7d18086821af9758bfeeb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Public domain.
 */

#ifndef _CHACHA_H
#define _CHACHA_H

#include <sys/types.h>

struct chacha_ctx {
	u_int input[16];
};

#endif