Skip to content

Commit 3cec28b

Browse files
author
tb
committed
Unwrap a line
1 parent cf64feb commit 3cec28b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/lib/libcrypto/bn/bn_blind.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: bn_blind.c,v 1.36 2023/08/08 15:18:24 tb Exp $ */
1+
/* $OpenBSD: bn_blind.c,v 1.37 2023/08/08 15:24:02 tb Exp $ */
22
/* ====================================================================
33
* Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
44
*
@@ -206,8 +206,7 @@ BN_BLINDING_setup(BN_BLINDING *b, BN_CTX *ctx)
206206
} while (1);
207207

208208
if (b->bn_mod_exp != NULL && b->m_ctx != NULL) {
209-
if (!b->bn_mod_exp(b->A, b->A, b->e, b->mod,
210-
ctx, b->m_ctx))
209+
if (!b->bn_mod_exp(b->A, b->A, b->e, b->mod, ctx, b->m_ctx))
211210
return 0;
212211
} else {
213212
if (!BN_mod_exp_ct(b->A, b->A, b->e, b->mod, ctx))

0 commit comments

Comments
 (0)