aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/if_wg/include/crypto/zinc.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/if_wg/include/crypto/zinc.h')
-rw-r--r--sys/dev/if_wg/include/crypto/zinc.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/dev/if_wg/include/crypto/zinc.h b/sys/dev/if_wg/include/crypto/zinc.h
new file mode 100644
index 000000000000..9aa1e8d59bf5
--- /dev/null
+++ b/sys/dev/if_wg/include/crypto/zinc.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0 OR MIT */
+/*
+ * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ */
+
+#ifndef _WG_ZINC_H
+#define _WG_ZINC_H
+
+int chacha20_mod_init(void);
+int poly1305_mod_init(void);
+int chacha20poly1305_mod_init(void);
+int blake2s_mod_init(void);
+int curve25519_mod_init(void);
+
+#endif