mmgen-wallet/mmgen/utils.py

967 lines
24 KiB
Python
Executable file

#!/usr/bin/env python
#
# mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
# Copyright (C) 2013 by philemon <mmgen-py@yandex.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
utils.py: Shared routines for the mmgen suite
"""
import sys
import mmgen.config as g
from binascii import hexlify,unhexlify
from mmgen.bitcoin import b58decode_pad
def msg(s): sys.stderr.write(s + "\n")
def msg_r(s): sys.stderr.write(s)
def bail(): sys.exit(9)
def kb_hold_protect_unix():
fd = sys.stdin.fileno()
old = termios.tcgetattr(fd)
tty.setcbreak(fd)
timeout = float(0.3)
try:
while True:
key = select([sys.stdin], [], [], timeout)[0]
if key: sys.stdin.read(1)
else: break
except:
print "\nUser interrupt"
sys.exit(1)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old)
def get_keypress_unix(prompt="",immed_chars=""):
msg_r(prompt)
timeout = float(0.3)
fd = sys.stdin.fileno()
old = termios.tcgetattr(fd)
tty.setcbreak(fd)
try:
while True:
select([sys.stdin], [], [], False)
ch = sys.stdin.read(1)
if immed_chars == "ALL" or ch in immed_chars:
return ch
if immed_chars == "ALL_EXCEPT_ENTER" and not ch in "\n\r":
return ch
second_key = select([sys.stdin], [], [], timeout)[0]
if second_key: continue
else: return ch
except:
print "\nUser interrupt"
sys.exit(1)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old)
def kb_hold_protect_mswin():
timeout = float(0.5)
try:
while True:
hit_time = time.time()
while True:
if msvcrt.kbhit():
msvcrt.getch()
break
if float(time.time() - hit_time) > timeout:
return
except:
msg("\nUser interrupt")
sys.exit(1)
def get_keypress_mswin(prompt="",immed_chars=""):
msg_r(prompt)
timeout = float(0.5)
try:
while True:
if msvcrt.kbhit():
ch = msvcrt.getch()
if ord(ch) == 3: raise KeyboardInterrupt
if immed_chars == "ALL" or ch in immed_chars:
return ch
if immed_chars == "ALL_EXCEPT_ENTER" and not ch in "\n\r":
return ch
hit_time = time.time()
while True:
if msvcrt.kbhit(): break
if float(time.time() - hit_time) > timeout:
return ch
except:
msg("\nUser interrupt")
sys.exit(1)
try:
import tty, termios
from select import select
get_char = get_keypress_unix
kb_hold_protect = kb_hold_protect_unix
except:
try:
import msvcrt, time
get_char = get_keypress_mswin
kb_hold_protect = kb_hold_protect_mswin
except:
if not sys.platform.startswith("linux") \
and not sys.platform.startswith("win"):
msg("Unsupported platform: %s" % sys.platform)
msg("This program currently runs only on Linux and Windows")
else:
msg("Unable to set terminal mode")
sys.exit(2)
def my_raw_input(prompt,echo=True,allowed_chars=""):
try:
if echo:
reply = raw_input(prompt)
else:
from getpass import getpass
reply = getpass(prompt)
except:
print "\nUser interrupt"
sys.exit(1)
kb_hold_protect()
return reply
def my_raw_input_old(prompt,echo=True,allowed_chars=""):
msg_r(prompt)
reply = ""
while True:
ch = get_char(immed_chars="ALL_EXCEPT_ENTER")
if allowed_chars and ch not in allowed_chars+"\n\r\b"+chr(0x7f):
continue
if echo:
if ch in "\b"+chr(0x7f): # WIP
pass
# reply.pop(0)
else: msg_r(ch)
if ch in "\n\r":
if not echo: msg("")
break
reply += ch
return reply
def _get_hash_params(hash_preset):
if hash_preset in g.hash_presets:
return g.hash_presets[hash_preset] # N,p,r,buflen
else:
# Shouldn't be here
msg("%s: invalid 'hash_preset' value" % hash_preset)
sys.exit(3)
def show_hash_presets():
fs = " {:<7} {:<6} {:<3} {}"
msg("Available parameters for scrypt.hash():")
msg(fs.format("Preset","N","r","p"))
for i in sorted(g.hash_presets.keys()):
msg(fs.format("'%s'" % i, *g.hash_presets[i]))
msg("N = memory usage (power of two), p = iterations (rounds)")
sys.exit(0)
cmessages = {
'null': "",
'unencrypted_secret_keys': """
This program generates secret keys from your {} seed, outputting them in
UNENCRYPTED form. Generate only the key(s) you need and guard them carefully.
""".format(g.proj_name),
'brain_warning': """
############################## EXPERTS ONLY! ##############################
A brainwallet will be secure only if you really know what you're doing and
have put much care into its creation. {} assumes no responsibility for
coins stolen as a result of a poorly crafted brainwallet passphrase.
A key will be generated from your passphrase using the parameters requested
by you: seed length {}, hash preset '{}'. For brainwallets it's highly
recommended to use one of the higher-numbered presets
Remember the seed length and hash preset parameters you've specified. To
generate the correct keys/addresses associated with this passphrase in the
future, you must continue using these same parameters
"""
}
def confirm_or_exit(message, question, expect="YES"):
msg("")
m = message.strip()
if m: msg(m)
conf_msg = "Type uppercase '%s' to confirm: " % expect
if question[0].isupper():
prompt = question + " " + conf_msg
else:
prompt = "Are you sure you want to %s?\n%s" % (question,conf_msg)
if my_raw_input(prompt).strip() != expect:
msg("Exiting at user request")
sys.exit(2)
msg("")
def user_confirm(prompt,default_yes=False,verbose=False):
q = "(Y/n)" if default_yes else "(y/N)"
while True:
reply = get_char("%s %s: " % (prompt, q)).strip("\n\r")
if not reply:
if default_yes: msg(""); return True
else: msg(""); return False
elif reply in 'yY': msg(""); return True
elif reply in 'nN': msg(""); return False
else:
if verbose: msg("\nInvalid reply")
else: msg_r("\r")
def prompt_and_get_char(prompt,chars,enter_ok=False,verbose=False):
while True:
reply = get_char("%s: " % prompt).strip("\n\r")
if reply in chars or (enter_ok and not reply):
msg("")
return reply
if verbose: msg("\nInvalid reply")
else: msg_r("\r")
def make_chksum_8(s):
from hashlib import sha256
return sha256(sha256(s).digest()).hexdigest()[:8].upper()
def make_chksum_6(s):
from hashlib import sha256
return sha256(s).hexdigest()[:6]
def check_infile(f):
import os, stat
try: mode = os.stat(f).st_mode
except:
msg("Unable to stat requested input file '%s'" % f)
sys.exit(1)
if not stat.S_ISREG(mode) or stat.S_ISLNK(mode):
msg("Requested input file '%s' is not a file" % f)
sys.exit(1)
if not os.access(f, os.R_OK):
msg("Requested input file '%s' is unreadable by you" % f)
sys.exit(1)
def _validate_addr_num(n):
try: n = int(n)
except:
msg("'%s': invalid argument for address" % n)
return False
if n < 1:
msg("'%s': address must be greater than zero" % n)
return False
return n
def parse_address_list(arg,sep=","):
ret = []
for i in (arg.split(sep)):
j = i.split("-")
if len(j) == 1:
i = _validate_addr_num(i)
if not i: return False
ret.append(i)
elif len(j) == 2:
beg = _validate_addr_num(j[0])
if not beg: return False
end = _validate_addr_num(j[1])
if not end: return False
if end < beg:
msg("'%s-%s': end of range less than beginning" % (beg,end))
return False
for k in range(beg,end+1): ret.append(k)
else:
msg("'%s': invalid argument for address range" % i)
return False
return sorted(set(ret))
def get_new_passphrase(what, opts):
if 'passwd_file' in opts:
pw = " ".join(_get_words_from_file(opts['passwd_file'],what))
elif 'echo_passphrase' in opts:
pw = " ".join(_get_words_from_user(("Enter %s: " % what), opts))
else:
for i in range(g.passwd_max_tries):
pw = " ".join(_get_words_from_user(("Enter %s: " % what),opts))
pw2 = " ".join(_get_words_from_user(("Repeat %s: " % what),opts))
if g.debug: print "Passphrases: [%s] [%s]" % (pw,pw2)
if pw == pw2:
msg("%ss match" % what.capitalize())
break
else:
msg("%ss do not match" % what.capitalize())
else:
msg("User failed to duplicate passphrase in %s attempts" %
g.passwd_max_tries)
sys.exit(2)
if pw == "": msg("WARNING: Empty passphrase")
return pw
def _scrypt_hash_passphrase(passwd, salt, hash_preset, buflen=32):
N,r,p = _get_hash_params(hash_preset)
import scrypt
return scrypt.hash(passwd, salt, 2**N, r, p, buflen=buflen)
def _get_from_brain_opt_params(opts):
l,p = opts['from_brain'].split(",")
return(int(l),p)
def _get_seed_from_brain_passphrase(words,opts):
bp = " ".join(words)
if g.debug: print "Sanitized brain passphrase: %s" % bp
seed_len,hash_preset = _get_from_brain_opt_params(opts)
if g.debug: print "Brainwallet l = %s, p = %s" % (seed_len,hash_preset)
msg_r("Hashing brainwallet data. Please wait...")
# Use buflen arg of scrypt.hash() to get seed of desired length
seed = _scrypt_hash_passphrase(bp, "", hash_preset, buflen=seed_len/8)
msg("Done")
return seed
def encrypt_seed(seed, key, opts):
"""
Encrypt a seed for a {} deterministic wallet
""".format(g.proj_name)
# 192-bit seed is 24 bytes -> not multiple of 16. Must use MODE_CTR
from Crypto.Cipher import AES
from Crypto.Util import Counter
c = AES.new(key, AES.MODE_CTR,counter=Counter.new(128))
enc_seed = c.encrypt(seed)
msg_r("Performing a test decryption of the seed...")
c = AES.new(key, AES.MODE_CTR,counter=Counter.new(128))
dec_seed = c.decrypt(enc_seed)
if dec_seed == seed: msg("done")
else:
msg("FAILED.\nDecrypted seed doesn't match original seed")
sys.exit(2)
return enc_seed
def write_to_stdout(data, what, confirm=True):
if sys.stdout.isatty() and confirm:
confirm_or_exit("",'output {} to screen'.format(what))
elif not sys.stdout.isatty():
try:
import os
of = os.readlink("/proc/%d/fd/1" % os.getpid())
msg("Redirecting output to file '%s'" % of)
except:
msg("Redirecting output to file")
sys.stdout.write(data)
def get_default_wordlist():
wl_id = g.default_wl
if wl_id == "electrum": from mmgen.mn_electrum import electrum_words as wl
elif wl_id == "tirosh": from mmgen.mn_tirosh import tirosh_words as wl
return wl.strip().split("\n")
def open_file_or_exit(filename,mode):
try:
f = open(filename, mode)
except:
what = "reading" if mode == 'r' else "writing"
msg("Unable to open file '%s' for %s" % (filename,what))
sys.exit(2)
return f
def write_to_file(outfile,data,confirm=False):
if confirm:
from os import stat
try:
stat(outfile)
except:
pass
else:
confirm_or_exit("","File '%s' already exists\nOverwrite?" % outfile)
f = open_file_or_exit(outfile,'w')
try:
f.write(data)
except:
msg("Failed to write to file '%s'" % outfile)
sys.exit(2)
f.close
def write_seed(seed, opts):
outfile = "%s.%s" % (make_chksum_8(seed).upper(),g.seed_ext)
if 'outdir' in opts:
outfile = "%s/%s" % (opts['outdir'], outfile)
from mmgen.bitcoin import b58encode_pad
data = col4(b58encode_pad(seed))
chk = make_chksum_6(b58encode_pad(seed))
o = "%s %s\n" % (chk,data)
if 'stdout' in opts:
write_to_stdout(o,"seed data",confirm=True)
elif not sys.stdout.isatty():
write_to_stdout(o,"seed data",confirm=False)
else:
write_to_file(outfile,o)
msg("%s data saved to file '%s'" % ("Seed",outfile))
def write_mnemonic(mn, seed, opts):
outfile = "%s.%s" % (make_chksum_8(seed).upper(),g.mn_ext)
if 'outdir' in opts:
outfile = "%s/%s" % (opts['outdir'], outfile)
o = " ".join(mn) + "\n"
if 'stdout' in opts:
write_to_stdout(o,"mnemonic data",confirm=True)
elif not sys.stdout.isatty():
write_to_stdout(o,"mnemonic data",confirm=False)
else:
write_to_file(outfile,o)
msg("%s data saved to file '%s'" % ("Mnemonic",outfile))
def _display_control_data(label,metadata,hash_preset,salt,enc_seed):
msg("WALLET DATA")
fs = " {:25} {}"
pw_empty = "yes" if metadata[3] == "E" else "no"
from mmgen.bitcoin import b58encode_pad
for i in (
("Label:", label),
("Seed ID:", metadata[0]),
("Key ID:", metadata[1]),
("Seed length:", metadata[2]),
("Scrypt hash params:", "Preset '%s' (%s)" % (hash_preset,
" ".join([str(i) for i in _get_hash_params(hash_preset)]))),
("Passphrase is empty:", pw_empty),
("Timestamp:", "%s UTC" % metadata[4]),
("Salt:", b58encode_pad(salt)),
("Encrypted seed:", b58encode_pad(enc_seed))
): msg(fs.format(*i))
def col4(s):
nondiv = 1 if len(s) % 4 else 0
return " ".join([s[4*i:4*i+4] for i in range(len(s)/4 + nondiv)])
def make_timestamp():
import time
tv = time.gmtime(time.time())[:6]
return "{:04d}{:02d}{:02d}_{:02d}{:02d}{:02d}".format(*tv)
def make_timestr():
import time
tv = time.gmtime(time.time())[:6]
return "{:04d}/{:02d}/{:02d} {:02d}:{:02d}:{:02d}".format(*tv)
def secs_to_hms(secs):
return "{:02d}:{:02d}:{:02d}".format(secs/3600, (secs/60) % 60, secs % 60)
def write_wallet_to_file(seed, passwd, key_id, salt, enc_seed, opts):
seed_id = make_chksum_8(seed)
seed_len = str(len(seed)*8)
pw_status = "NE" if len(passwd) else "E"
hash_preset = opts['hash_preset']
outfile="{}-{}[{},{}].{}".format(seed_id,key_id,seed_len,hash_preset,g.wallet_ext)
if 'outdir' in opts:
outfile = "%s/%s" % (opts['outdir'], outfile)
label = opts['label'] if 'label' in opts else "No Label"
from mmgen.bitcoin import b58encode_pad
sf = b58encode_pad(salt)
esf = b58encode_pad(enc_seed)
metadata = seed_id.lower(),key_id.lower(),\
seed_len,pw_status,make_timestamp()
lines = (
label,
"{} {} {} {} {}".format(*metadata),
"{}: {} {} {}".format(hash_preset,*_get_hash_params(hash_preset)),
"{} {}".format(make_chksum_6(sf), col4(sf)),
"{} {}".format(make_chksum_6(esf), col4(esf))
)
chk = make_chksum_6(" ".join(lines))
confirm = False if 'quiet' in opts else True
write_to_file(outfile, "\n".join((chk,)+lines)+"\n", confirm)
msg("Wallet saved to file '%s'" % outfile)
if 'verbose' in opts:
_display_control_data(label,metadata,hash_preset,salt,enc_seed)
def write_walletdat_dump_to_file(wallet_id,data,num_keys,ext,what,opts):
outfile = "wd_{}[{}].{}".format(wallet_id,num_keys,ext)
if 'outdir' in opts:
outfile = "%s/%s" % (opts['outdir'], outfile)
write_to_file(outfile,data,confirm=False)
msg("wallet.dat %s saved to file '%s'" % (what,outfile))
def compare_checksums(chksum1, desc1, chksum2, desc2):
if chksum1.lower() == chksum2.lower():
msg("OK (%s)" % chksum1.upper())
return True
else:
if g.debug:
msg("ERROR!\nComputed checksum %s (%s) doesn't match checksum %s (%s)" \
% (desc1,chksum1,desc2,chksum2))
return False
def _is_hex(s):
try: int(s,16)
except: return False
else: return True
def _check_mmseed_format(words):
valid = False
what = "%s data" % g.seed_ext
try:
chklen = len(words[0])
except:
return False
if len(words) < 3 or len(words) > 12:
msg("Invalid data length (%s) in %s" % (len(words),what))
elif not _is_hex(words[0]):
msg("Invalid format of checksum '%s' in %s"%(words[0], what))
elif chklen != 6:
msg("Incorrect length of checksum (%s) in %s" % (chklen,what))
else: valid = True
return valid
def check_wallet_format(infile, lines, opts):
def vmsg(s):
if 'verbose' in opts: msg(s)
what = "wallet file '%s'" % infile
valid = False
chklen = len(lines[0])
if len(lines) != 6:
vmsg("Invalid number of lines (%s) in %s" % (len(lines),what))
elif chklen != 6:
vmsg("Incorrect length of Master checksum (%s) in %s" % (chklen,what))
elif not _is_hex(lines[0]):
vmsg("Invalid format of Master checksum '%s' in %s"%(lines[0], what))
else: valid = True
if valid == False:
msg("Invalid %s" % what)
sys.exit(2)
def _check_chksum_6(chk,val,desc,infile):
comp_chk = make_chksum_6(val)
if chk != comp_chk:
msg("%s checksum incorrect in file '%s'!" % (desc,infile))
msg("Checksum: %s. Computed value: %s" % (chk,comp_chk))
sys.exit(2)
elif g.debug:
msg("%s checksum passed: %s" % (desc.capitalize(),chk))
def get_data_from_wallet(infile,opts,silent=False):
if not silent:
msg("Getting {} wallet data from file '{}'".format(g.proj_name,infile))
f = open_file_or_exit(infile, 'r')
lines = [i.strip() for i in f.readlines()]
f.close()
check_wallet_format(infile, lines, opts)
label = lines[1]
metadata = lines[2].split()
for i in 0,1: metadata[i] = metadata[i].upper()
hd = lines[3].split()
hash_preset = hd[0][:-1]
hash_params = [int(i) for i in hd[1:]]
if hash_params != _get_hash_params(hash_preset):
msg("Hash parameters '%s' don't match hash preset '%s'" %
(" ".join(hash_params), hash_preset))
sys.exit(9)
res = {}
for i,key in (4,"salt"),(5,"enc_seed"):
l = lines[i].split()
val = "".join(l[1:])
_check_chksum_6(l[0], val, key, infile)
res[key] = b58decode_pad(val)
if res[key] == False:
msg("Invalid b58 number: %s" % val)
sys.exit(9)
_check_chksum_6(lines[0], " ".join(lines[1:]), "Master", infile)
return label,metadata,hash_preset,res['salt'],res['enc_seed']
def _get_words_from_user(prompt, opts):
# split() also strips
words = my_raw_input(prompt,
echo=True if 'echo_passphrase' in opts else False).split()
if g.debug: print "Sanitized input: [%s]" % " ".join(words)
return words
def _get_words_from_file(infile,what):
msg("Getting %s from file '%s'" % (what,infile))
f = open_file_or_exit(infile, 'r')
# split() also strips
words = f.read().split()
f.close()
if g.debug: print "Sanitized input: [%s]" % " ".join(words)
return words
def get_lines_from_file(infile,what="",remove_comments=False):
if what != "": msg("Getting %s from file '%s'" % (what,infile))
f = open_file_or_exit(infile,'r')
lines = f.read().splitlines(); f.close()
if remove_comments:
import re
# re.sub(pattern, repl, string, count=0, flags=0)
ret = []
for i in lines:
i = re.sub('#.*','',i,1)
i = re.sub('\s+$','',i)
if i: ret.append(i)
return ret
else:
return lines
def get_data_from_file(infile,what="data"):
msg("Getting %s from file '%s'" % (what,infile))
f = open_file_or_exit(infile,'r')
data = f.read()
f.close()
return data
def _get_seed_from_seed_data(words):
if not _check_mmseed_format(words):
msg("Invalid %s data" % g.seed_ext)
return False
stored_chk = words[0]
seed_b58 = "".join(words[1:])
chk = make_chksum_6(seed_b58)
msg_r("Validating %s checksum..." % g.seed_ext)
if compare_checksums(chk, "from seed", stored_chk, "from input"):
seed = b58decode_pad(seed_b58)
if seed == False:
msg("Invalid b58 number: %s" % val)
return False
msg("%s data produces seed ID: %s" % (g.seed_ext,make_chksum_8(seed)))
return seed
else:
msg("Invalid checksum for {} seed".format(g.proj_name))
return False
passwd_file_used = False
def mark_passwd_file_as_used(opts):
global passwd_file_used
if passwd_file_used:
msg_r("WARNING: Reusing passphrase from file '%s'." % opts['passwd_file'])
msg(" This may not be what you want!")
passwd_file_used = True
def get_mmgen_passphrase(prompt,opts):
if 'passwd_file' in opts:
mark_passwd_file_as_used(opts)
return " ".join(_get_words_from_file(opts['passwd_file'],"passphrase"))
else:
return " ".join(_get_words_from_user(prompt,opts))
def get_bitcoind_passphrase(prompt,opts):
if 'passwd_file' in opts:
mark_passwd_file_as_used(opts)
return get_data_from_file(opts['passwd_file'],"passphrase").strip("\r\n")
else:
return my_raw_input(prompt,
echo=True if 'echo_passphrase' in opts else False)
def get_seed_from_wallet(
infile,
opts,
prompt="Enter {} wallet passphrase: ".format(g.proj_name),
silent=False
):
wdata = get_data_from_wallet(infile,opts,silent=silent)
label,metadata,hash_preset,salt,enc_seed = wdata
if 'verbose' in opts: _display_control_data(*wdata)
passwd = get_mmgen_passphrase(prompt,opts)
key = make_key(passwd, salt, hash_preset)
return decrypt_seed(enc_seed, key, metadata[0], metadata[1])
def make_key(passwd, salt, hash_preset):
msg_r("Hashing passphrase. Please wait...")
key = _scrypt_hash_passphrase(passwd, salt, hash_preset)
msg("done")
return key
def decrypt_seed(enc_seed, key, seed_id, key_id):
msg_r("Checking key...")
chk = make_chksum_8(key)
if not compare_checksums(chk, "of key", key_id, "in header"):
msg("Incorrect passphrase")
return False
msg_r("Decrypting seed with key...")
from Crypto.Cipher import AES
from Crypto.Util import Counter
c = AES.new(key, AES.MODE_CTR,counter=Counter.new(128))
dec_seed = c.decrypt(enc_seed)
chk = make_chksum_8(dec_seed)
if compare_checksums(chk,"of decrypted seed",seed_id,"in header"):
msg("Passphrase is OK")
else:
if not g.debug:
msg_r("Checking key ID...")
chk = make_chksum_8(key)
if compare_checksums(chk, "of key", key_id, "in header"):
msg("Key ID is correct but decryption of seed failed")
else:
msg("Incorrect passphrase")
return False
if g.debug: msg("key: %s" % hexlify(key))
return dec_seed
def _get_words(infile,what,prompt,opts):
if infile:
return _get_words_from_file(infile,what)
else:
return _get_words_from_user(prompt,opts)
def get_seed(infile,opts,silent=False):
ext = infile.split(".")[-1]
if ext == g.mn_ext: source = "mnemonic"
elif ext == g.brain_ext: source = "brainwallet"
elif ext == g.seed_ext: source = "seed"
elif ext == g.wallet_ext: source = "wallet"
elif 'from_mnemonic' in opts: source = "mnemonic"
elif 'from_brain' in opts: source = "brainwallet"
elif 'from_seed' in opts: source = "seed"
else:
if infile: msg(
"Invalid file extension for file: %s\nValid extensions: '.%s'" %
(infile, "', '.".join(g.seedfile_exts)))
else: msg("No seed source type specified and no file supplied")
sys.exit(2)
if source == "mnemonic":
prompt = "Enter mnemonic: "
words = _get_words(infile,"mnemonic data",prompt,opts)
wl = get_default_wordlist()
from mmgen.mnemonic import get_seed_from_mnemonic
seed = get_seed_from_mnemonic(words,wl)
elif source == "brainwallet":
if 'from_brain' not in opts:
msg("'--from-brain' parameters must be specified for brainwallet file")
sys.exit(2)
if 'quiet' not in opts:
confirm_or_exit(
cmessages['brain_warning'].format(
g.proj_name.capitalize(), *_get_from_brain_opt_params(opts)),
"continue")
prompt = "Enter brainwallet passphrase: "
words = _get_words(infile,"brainwallet data",prompt,opts)
seed = _get_seed_from_brain_passphrase(words,opts)
elif source == "seed":
prompt = "Enter seed in %s format: " % g.seed_ext
words = _get_words(infile,"seed data",prompt,opts)
seed = _get_seed_from_seed_data(words)
elif source == "wallet":
seed = get_seed_from_wallet(infile, opts, silent=silent)
if infile and not seed and (source == "seed" or source == "mnemonic"):
msg("Invalid %s file: %s" % (source,infile))
sys.exit(2)
return seed
# Repeat if entered data is invalid
def get_seed_retry(infile,opts):
silent = False
while True:
seed = get_seed(infile,opts,silent=silent)
silent = True
if seed: return seed
def do_pager(text):
pagers = ["less","more"]
shell = False
from os import environ
# Hack for MS Windows command line (i.e. non CygWin) environment
# When 'shell' is true, Windows aborts the calling program if executable
# not found.
# When 'shell' is false, an exception is raised, invoking the fallback
# 'print' instead of the pager.
# We risk assuming that "more" will always be available on a stock
# Windows installation.
if sys.platform.startswith("win") and 'HOME' not in environ:
shell = True
pagers = ["more"]
if 'PAGER' in environ and environ['PAGER'] != pagers[0]:
pagers = [environ['PAGER']] + pagers
for pager in pagers:
end = "" if pager == "less" else "\n(end of text)\n"
try:
from subprocess import Popen, PIPE, STDOUT
p = Popen([pager], stdin=PIPE, shell=shell)
except: pass
else:
try:
p.communicate(text+end+"\n")
except:
# Has no effect. Why?
if pager != "less":
msg("\n(Interrupted by user)\n")
finally:
msg_r("\r")
break
else: print text+end
if __name__ == "__main__":
print "utils.py"