CLA: trivial
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26095)
return ret;
}
- BIGNUM *BN_secure_new(void)
- {
- BIGNUM *ret = BN_new();
- if (ret != NULL)
- ret->flags |= BN_FLG_SECURE;
- return ret;
- }
+BIGNUM *BN_secure_new(void)
+{
+ BIGNUM *ret = BN_new();
+ if (ret != NULL)
+ ret->flags |= BN_FLG_SECURE;
+ return ret;
+}
/* This is used by bn_expand2() */
/* The caller MUST check that words > b->dmax before calling this */