From 3cec28b4cf65706420dc1d217ec2972c386f095d Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 8 Aug 2023 15:24:02 +0000 Subject: Unwrap a line --- src/lib/libcrypto/bn/bn_blind.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/lib/libcrypto') diff --git a/src/lib/libcrypto/bn/bn_blind.c b/src/lib/libcrypto/bn/bn_blind.c index f58a977bba..e9873b009e 100644 --- a/src/lib/libcrypto/bn/bn_blind.c +++ b/src/lib/libcrypto/bn/bn_blind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_blind.c,v 1.36 2023/08/08 15:18:24 tb Exp $ */ +/* $OpenBSD: bn_blind.c,v 1.37 2023/08/08 15:24:02 tb Exp $ */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * @@ -206,8 +206,7 @@ BN_BLINDING_setup(BN_BLINDING *b, BN_CTX *ctx) } while (1); if (b->bn_mod_exp != NULL && b->m_ctx != NULL) { - if (!b->bn_mod_exp(b->A, b->A, b->e, b->mod, - ctx, b->m_ctx)) + if (!b->bn_mod_exp(b->A, b->A, b->e, b->mod, ctx, b->m_ctx)) return 0; } else { if (!BN_mod_exp_ct(b->A, b->A, b->e, b->mod, ctx)) -- cgit v1.2.3-55-g6feb