mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 08:14:15 +00:00
use BN_CTX_start and BN_CTX_end instead of removing BN_CTX_start
This commit is contained in:
parent
acde10b46e
commit
7fb2d13a8b
@ -316,6 +316,7 @@ namespace crypto
|
|||||||
|
|
||||||
bool IsOnCurve (const EDDSAPoint& p, BN_CTX * ctx) const
|
bool IsOnCurve (const EDDSAPoint& p, BN_CTX * ctx) const
|
||||||
{
|
{
|
||||||
|
BN_CTX_start (ctx);
|
||||||
BIGNUM * x2 = BN_CTX_get (ctx), * y2 = BN_CTX_get (ctx), * tmp = BN_CTX_get (ctx);
|
BIGNUM * x2 = BN_CTX_get (ctx), * y2 = BN_CTX_get (ctx), * tmp = BN_CTX_get (ctx);
|
||||||
BN_sqr (x2, p.x, ctx); // x^2
|
BN_sqr (x2, p.x, ctx); // x^2
|
||||||
BN_sqr (y2, p.y, ctx); // y^2
|
BN_sqr (y2, p.y, ctx); // y^2
|
||||||
@ -352,7 +353,7 @@ namespace crypto
|
|||||||
BN_mod_mul (x, x, I, q, ctx);
|
BN_mod_mul (x, x, I, q, ctx);
|
||||||
if (BN_is_odd (x))
|
if (BN_is_odd (x))
|
||||||
BN_sub (x, q, x);
|
BN_sub (x, q, x);
|
||||||
|
BN_CTX_end (ctx);
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user