http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/commit/df0385160b4f2793ecd801cd03ac05aecda1f753?style=split
= self . pw_len : 57 mmgen/ed25519.py Normal file Unescape Escape View file @ -0,0 +1,57 @@ # The reference Ed25519 software is in the public domain. # Source: https://ed25519.cr.yp.to/python/ed25519.py # Date accessed: 2 Nov. 2016 import hashlib b = 256 q = 2 * * 255 - 19 l = 2 * * 252 + 27742317777372353535851937790883648493 def H ( m ) : return hashlib . sha512 ( m ) . digest ( ) def expmod ( b , e , m ) : if e == 0 : return 1 t = expmod ( b , e / / 2 , m ) * * 2 % m if e & 1 :...