2019-07-25 16:14:13 +00:00
|
|
|
import nacl.signing, nacl.encoding, nacl.pwhash
|
|
|
|
import onionrexceptions
|
|
|
|
from onionrutils import bytesconverter
|
2019-07-27 20:29:15 +00:00
|
|
|
from etc import onionrvalues
|
2019-07-19 19:49:56 +00:00
|
|
|
def generate_pub_key():
|
|
|
|
'''Generate a Ed25519 public key pair, return tuple of base32encoded pubkey, privkey'''
|
|
|
|
private_key = nacl.signing.SigningKey.generate()
|
|
|
|
public_key = private_key.verify_key.encode(encoder=nacl.encoding.Base32Encoder())
|
2019-07-25 16:14:13 +00:00
|
|
|
return (public_key.decode(), private_key.encode(encoder=nacl.encoding.Base32Encoder()).decode())
|
|
|
|
|
|
|
|
def generate_deterministic(passphrase, bypassCheck=False):
|
|
|
|
'''Generate a Ed25519 public key pair from a password'''
|
2019-07-27 20:29:15 +00:00
|
|
|
passStrength = onionrvalues.PASSWORD_LENGTH
|
2019-07-25 16:14:13 +00:00
|
|
|
passphrase = bytesconverter.str_to_bytes(passphrase) # Convert to bytes if not already
|
|
|
|
# Validate passphrase length
|
|
|
|
if not bypassCheck:
|
|
|
|
if len(passphrase) < passStrength:
|
|
|
|
raise onionrexceptions.PasswordStrengthError("Passphase must be at least %s characters" % (passStrength,))
|
|
|
|
# KDF values
|
|
|
|
kdf = nacl.pwhash.argon2id.kdf
|
|
|
|
salt = b"U81Q7llrQcdTP0Ux" # Does not need to be unique or secret, but must be 16 bytes
|
|
|
|
ops = nacl.pwhash.argon2id.OPSLIMIT_SENSITIVE
|
|
|
|
mem = nacl.pwhash.argon2id.MEMLIMIT_SENSITIVE
|
|
|
|
|
|
|
|
key = kdf(32, passphrase, salt, opslimit=ops, memlimit=mem) # Generate seed for ed25519 key
|
|
|
|
key = nacl.signing.SigningKey(key)
|
|
|
|
return (key.verify_key.encode(nacl.encoding.Base32Encoder).decode(), key.encode(nacl.encoding.Base32Encoder).decode())
|