|
@@ -35,7 +35,7 @@ if sys.argv[0].split('-')[-1] == 'keygen':
|
|
|
else:
|
|
else:
|
|
|
gen_what = 'addresses'
|
|
gen_what = 'addresses'
|
|
|
gen_desc = 'addresses'
|
|
gen_desc = 'addresses'
|
|
|
- opt_filter = 'hbcdeiHOKlpzPqrStv-'
|
|
|
|
|
|
|
+ opt_filter = 'hbcdeEiHOKlpzPqrStv-'
|
|
|
note_addrkey = ''
|
|
note_addrkey = ''
|
|
|
note_secp256k1 = """
|
|
note_secp256k1 = """
|
|
|
If available, the secp256k1 library will be used for address generation.
|
|
If available, the secp256k1 library will be used for address generation.
|
|
@@ -53,6 +53,8 @@ opts_data = lambda: {
|
|
|
-c, --print-checksum Print address list checksum and exit
|
|
-c, --print-checksum Print address list checksum and exit
|
|
|
-d, --outdir= d Output files to directory 'd' instead of working dir
|
|
-d, --outdir= d Output files to directory 'd' instead of working dir
|
|
|
-e, --echo-passphrase Echo passphrase or mnemonic to screen upon entry
|
|
-e, --echo-passphrase Echo passphrase or mnemonic to screen upon entry
|
|
|
|
|
+-E, --use-internal-ed25519-mod Use (slow) internal ed25519 module for Monero
|
|
|
|
|
+ address generation, even if ed25519ll is installed
|
|
|
-i, --in-fmt= f Input is from wallet format 'f' (see FMT CODES below)
|
|
-i, --in-fmt= f Input is from wallet format 'f' (see FMT CODES below)
|
|
|
-H, --hidden-incog-input-params=f,o Read hidden incognito data from file
|
|
-H, --hidden-incog-input-params=f,o Read hidden incognito data from file
|
|
|
'f' at offset 'o' (comma-separated)
|
|
'f' at offset 'o' (comma-separated)
|
|
@@ -121,6 +123,10 @@ errmsg = "'{}': invalid parameter for --type option".format(opt.type)
|
|
|
addr_type = MAT(opt.type or g.proto.dfl_mmtype,errmsg=errmsg)
|
|
addr_type = MAT(opt.type or g.proto.dfl_mmtype,errmsg=errmsg)
|
|
|
|
|
|
|
|
if len(cmd_args) < 1: opts.usage()
|
|
if len(cmd_args) < 1: opts.usage()
|
|
|
|
|
+
|
|
|
|
|
+if opt.use_internal_ed25519_mod:
|
|
|
|
|
+ msg('Using (slow) internal ed25519 module by user request')
|
|
|
|
|
+
|
|
|
idxs = AddrIdxList(fmt_str=cmd_args.pop())
|
|
idxs = AddrIdxList(fmt_str=cmd_args.pop())
|
|
|
|
|
|
|
|
sf = get_seed_file(cmd_args,1)
|
|
sf = get_seed_file(cmd_args,1)
|