Fix a trivial coding style nit in sm2_sign.c
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Andy Polyakov <appro@openssl.org> GH: #6787
This commit is contained in:
parent
feac7a1c8b
commit
9e4c977748
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ static ECDSA_SIG *sm2_sig_gen(const EC_KEY *key, const BIGNUM *e)
|
|||
for (;;) {
|
||||
if (!BN_priv_rand_range(k, order)) {
|
||||
SM2err(SM2_F_SM2_SIG_GEN, ERR_R_INTERNAL_ERROR);
|
||||
goto done;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx)
|
||||
|
|
Loading…
Reference in a new issue