mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-05-01 05:02:29 +02:00
Add eddsa from ref10 implementation (with some modifications).
This commit is contained in:
parent
2fcc91a755
commit
93d60152d5
84 changed files with 5798 additions and 567 deletions
28
core/crypto/ed25519/d.py
Normal file
28
core/crypto/ed25519/d.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
q = 2**255 - 19
|
||||
|
||||
def expmod(b,e,m):
|
||||
if e == 0: return 1
|
||||
t = expmod(b,e/2,m)**2 % m
|
||||
if e & 1: t = (t*b) % m
|
||||
return t
|
||||
|
||||
def inv(x):
|
||||
return expmod(x,q-2,q)
|
||||
|
||||
def radix255(x):
|
||||
x = x % q
|
||||
if x + x > q: x -= q
|
||||
x = [x,0,0,0,0,0,0,0,0,0]
|
||||
bits = [26,25,26,25,26,25,26,25,26,25]
|
||||
for i in range(9):
|
||||
carry = (x[i] + 2**(bits[i]-1)) / 2**bits[i]
|
||||
x[i] -= carry * 2**bits[i]
|
||||
x[i + 1] += carry
|
||||
result = ""
|
||||
for i in range(9):
|
||||
result = result+str(x[i])+","
|
||||
result = result+str(x[9])
|
||||
return result
|
||||
|
||||
d = -121665 * inv(121666)
|
||||
print radix255(d)
|
Loading…
Add table
Add a link
Reference in a new issue