mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-15 01:10:29 +00:00
24 lines
862 B
Diff
24 lines
862 B
Diff
|
From dc92ec2aa9cb76b782bdba3fc5203267ebf39994 Mon Sep 17 00:00:00 2001
|
||
|
From: Kareem <kareem@wolfssl.com>
|
||
|
Date: Fri, 22 Jul 2022 11:07:46 -0700
|
||
|
Subject: [PATCH] Update sp_rand_prime's preprocessor gating to match
|
||
|
wolfSSL_BN_generate_prime_ex's.
|
||
|
|
||
|
---
|
||
|
wolfcrypt/src/sp_int.c | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
--- a/wolfcrypt/src/sp_int.c
|
||
|
+++ b/wolfcrypt/src/sp_int.c
|
||
|
@@ -15647,8 +15647,8 @@ int sp_radix_size(sp_int* a, int radix,
|
||
|
* Prime number generation and checking.
|
||
|
***************************************/
|
||
|
|
||
|
-#if defined(WOLFSSL_KEY_GEN) && (!defined(NO_DH) || !defined(NO_DSA)) && \
|
||
|
- !defined(WC_NO_RNG)
|
||
|
+#if defined(WOLFSSL_KEY_GEN) && (!defined(NO_RSA) || !defined(NO_DH) || \
|
||
|
+ !defined(NO_DSA)) && !defined(WC_NO_RNG)
|
||
|
/* Generate a random prime for RSA only.
|
||
|
*
|
||
|
* @param [out] r SP integer to hold result.
|