aboutsummaryrefslogtreecommitdiffstats
path: root/src/crypto.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2021-11-22 10:39:20 -0800
committerJason A. Donenfeld <Jason@zx2c4.com>2022-06-14 00:55:29 +0200
commit613c964ee9241c3e8e312faa967684f1068365ee (patch)
treece248c0b37dda290ad2833b0d1fb100c13a33a14 /src/crypto.h
parentcrypto: use <crypto/chacha20_poly1305.h> when present (diff)
downloadwireguard-freebsd-613c964ee9241c3e8e312faa967684f1068365ee.tar.xz
wireguard-freebsd-613c964ee9241c3e8e312faa967684f1068365ee.zip
crypto: use curve25519 API from the kernel when available
Signed-off-by: John Baldwin <jhb@FreeBSD.org>
Diffstat (limited to '')
-rw-r--r--src/crypto.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/crypto.h b/src/crypto.h
index 2b741fc..87c759f 100644
--- a/src/crypto.h
+++ b/src/crypto.h
@@ -18,6 +18,10 @@
#define KERNEL_CHACHA20_POLY1305
#endif
+#if __FreeBSD_version >= 1400049
+#define KERNEL_CURVE25519
+#endif
+
enum chacha20poly1305_lengths {
XCHACHA20POLY1305_NONCE_SIZE = 24,
CHACHA20POLY1305_KEY_SIZE = 32,
@@ -141,6 +145,9 @@ void blake2s(uint8_t *out, const uint8_t *in, const uint8_t *key,
void blake2s_hmac(uint8_t *out, const uint8_t *in, const uint8_t *key,
const size_t outlen, const size_t inlen, const size_t keylen);
+#ifdef KERNEL_CURVE25519
+#include <crypto/curve25519.h>
+#else
enum curve25519_lengths {
CURVE25519_KEY_SIZE = 32
};
@@ -169,6 +176,7 @@ static inline void curve25519_generate_secret(uint8_t secret[CURVE25519_KEY_SIZE
arc4random_buf(secret, CURVE25519_KEY_SIZE);
curve25519_clamp_secret(secret);
}
+#endif
int crypto_init(void);
void crypto_deinit(void);