Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/crypto/chacha20/_chacha.h
39481 views
1
/*
2
* Public domain.
3
*/
4
5
#ifndef _CHACHA_H
6
#define _CHACHA_H
7
8
#include <sys/types.h>
9
10
struct chacha_ctx {
11
u_int input[16];
12
};
13
14
#endif
15
16