aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto/chacha20/_chacha.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/crypto/chacha20/_chacha.h')
-rw-r--r--sys/crypto/chacha20/_chacha.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/crypto/chacha20/_chacha.h b/sys/crypto/chacha20/_chacha.h
new file mode 100644
index 000000000000..a7217b628d0e
--- /dev/null
+++ b/sys/crypto/chacha20/_chacha.h
@@ -0,0 +1,12 @@
+/* $FreeBSD$ */
+
+#ifndef _CHACHA_H
+#define _CHACHA_H
+
+#include <sys/types.h>
+
+struct chacha_ctx {
+ u_int input[16];
+};
+
+#endif