mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-21 16:49:10 +01:00
fixed typo
This commit is contained in:
parent
046a80cfe4
commit
3b46e9f351
1 changed files with 5 additions and 5 deletions
|
@ -411,13 +411,13 @@ namespace crypto
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
BIGNUM * Ed25519::ScalarMul (const BIGNUM * p, const BIGNUM * n, BN_CTX * ctx) const
|
BIGNUM * Ed25519::ScalarMul (const BIGNUM * u, const BIGNUM * k, BN_CTX * ctx) const
|
||||||
{
|
{
|
||||||
BN_CTX_start (ctx);
|
BN_CTX_start (ctx);
|
||||||
auto x1 = BN_CTX_get (ctx); BN_copy (x1, p);
|
auto x1 = BN_CTX_get (ctx); BN_copy (x1, u);
|
||||||
auto x2 = BN_CTX_get (ctx); BN_one (x2);
|
auto x2 = BN_CTX_get (ctx); BN_one (x2);
|
||||||
auto z2 = BN_CTX_get (ctx); BN_zero (z2);
|
auto z2 = BN_CTX_get (ctx); BN_zero (z2);
|
||||||
auto x3 = BN_CTX_get (ctx); BN_copy (x1, p);
|
auto x3 = BN_CTX_get (ctx); BN_copy (x3, u);
|
||||||
auto z3 = BN_CTX_get (ctx); BN_one (z3);
|
auto z3 = BN_CTX_get (ctx); BN_one (z3);
|
||||||
auto a24 = BN_CTX_get (ctx); BN_set_word (a24, 121665);
|
auto a24 = BN_CTX_get (ctx); BN_set_word (a24, 121665);
|
||||||
auto a = BN_CTX_get (ctx); auto aa = BN_CTX_get (ctx);
|
auto a = BN_CTX_get (ctx); auto aa = BN_CTX_get (ctx);
|
||||||
|
@ -427,11 +427,11 @@ namespace crypto
|
||||||
auto da = BN_CTX_get (ctx); auto cb = BN_CTX_get (ctx);
|
auto da = BN_CTX_get (ctx); auto cb = BN_CTX_get (ctx);
|
||||||
auto tmp1 = BN_CTX_get (ctx); auto tmp2 = BN_CTX_get (ctx);
|
auto tmp1 = BN_CTX_get (ctx); auto tmp2 = BN_CTX_get (ctx);
|
||||||
unsigned int swap = 0;
|
unsigned int swap = 0;
|
||||||
auto bits = BN_num_bits (n);
|
auto bits = BN_num_bits (k);
|
||||||
while(bits)
|
while(bits)
|
||||||
{
|
{
|
||||||
--bits;
|
--bits;
|
||||||
auto k_t = BN_is_bit_set(n, bits) ? 1 : 0;
|
auto k_t = BN_is_bit_set(k, bits) ? 1 : 0;
|
||||||
swap ^= k_t;
|
swap ^= k_t;
|
||||||
if (swap)
|
if (swap)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue