aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard/WireGuard')
-rw-r--r--WireGuard/WireGuard/Crypto/x25519.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/Crypto/x25519.c b/WireGuard/WireGuard/Crypto/x25519.c
index e0ff482..b77da0b 100644
--- a/WireGuard/WireGuard/Crypto/x25519.c
+++ b/WireGuard/WireGuard/Crypto/x25519.c
@@ -7,6 +7,7 @@
#include <stdint.h>
#include <string.h>
+#include <assert.h>
#include <CommonCrypto/CommonRandom.h>
#include "x25519.h"
@@ -171,7 +172,7 @@ void curve25519_derive_public_key(uint8_t public_key[32], const uint8_t private_
void curve25519_generate_private_key(uint8_t private_key[32])
{
- CCRandomGenerateBytes(private_key, 32);
+ assert(CCRandomGenerateBytes(private_key, 32) == kCCSuccess);
private_key[31] = (private_key[31] & 127) | 64;
private_key[0] &= 248;
}