summaryrefslogtreecommitdiffstats
path: root/src/crypto/bn/montgomery.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/bn/montgomery.c')
-rw-r--r--src/crypto/bn/montgomery.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/crypto/bn/montgomery.c b/src/crypto/bn/montgomery.c
index c6c9c88..152cf2d 100644
--- a/src/crypto/bn/montgomery.c
+++ b/src/crypto/bn/montgomery.c
@@ -110,7 +110,6 @@
#include <string.h>
-#include <openssl/err.h>
#include <openssl/mem.h>
#include <openssl/thread.h>
@@ -177,11 +176,6 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx) {
BIGNUM tmod;
BN_ULONG buf[2];
- if (BN_is_zero(mod)) {
- OPENSSL_PUT_ERROR(BN, BN_R_DIV_BY_ZERO);
- return 0;
- }
-
BN_CTX_start(ctx);
Ri = BN_CTX_get(ctx);
if (Ri == NULL) {