main_passgen.py 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2025 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. mmgen-passgen: Generate a series or range of passwords from an MMGen
  20. deterministic wallet
  21. """
  22. import sys, time
  23. from .cfg import gc, Config
  24. from .addrlist import AddrIdxList
  25. from .passwdlist import PasswordList
  26. from .wallet import Wallet
  27. from .obj import MMGenPWIDString
  28. from .ui import keypress_confirm
  29. pwi = PasswordList.pw_info
  30. opts_data = {
  31. 'sets': [('print_checksum', True, 'quiet', True)],
  32. 'text': {
  33. 'desc': f"""
  34. Generate a range or list of passwords from an {gc.proj_name} wallet,
  35. mnemonic, seed or brainwallet for the given ID string
  36. """,
  37. 'usage':'[opts] [seed source] <ID string> <index list or range(s)>',
  38. 'options': """
  39. -h, --help Print this help message
  40. --, --longhelp Print help message for long (global) options
  41. -d, --outdir= d Output files to directory 'd' instead of working dir
  42. -e, --echo-passphrase Echo passphrase or mnemonic to screen upon entry
  43. -f, --passwd-fmt= f Generate passwords of format 'f'. Default: {pl.dfl_pw_fmt}.
  44. See PASSWORD FORMATS below
  45. -i, --in-fmt= f Input is from wallet format 'f' (see FMT CODES below)
  46. -H, --hidden-incog-input-params=f,o Read hidden incognito data from file
  47. 'f' at offset 'o' (comma-separated)
  48. -O, --old-incog-fmt Specify old-format incognito input
  49. -L, --passwd-len= l Specify length of generated passwords. For defaults,
  50. see PASSWORD FORMATS below. An argument of 'h' will
  51. generate passwords of half the default length.
  52. -l, --seed-len= l Specify wallet seed length of 'l' bits. This option
  53. is required only for brainwallet and incognito inputs
  54. with non-standard (< {dsl}-bit) seed lengths.
  55. -p, --hash-preset= p Use the scrypt hash parameters defined by preset 'p'
  56. for password hashing (default: '{gc.dfl_hash_preset}')
  57. -z, --show-hash-presets Show information on available hash presets
  58. -P, --passwd-file= f Get wallet passphrase from file 'f'
  59. -q, --quiet Produce quieter output; suppress some warnings
  60. -r, --usr-randchars=n Get 'n' characters of additional randomness from user
  61. (min={cfg.min_urandchars}, max={cfg.max_urandchars}, default={cfg.usr_randchars})
  62. -S, --stdout Print passwords to stdout
  63. -v, --verbose Produce more verbose output
  64. """,
  65. 'notes': """
  66. NOTES FOR THIS COMMAND
  67. ID string must be a valid UTF-8 string not longer than {ml} characters and
  68. not containing the symbols '{fs}'.
  69. Password indexes are given as a comma-separated list and/or hyphen-separated
  70. range(s).
  71. Changing either the password format (base32,base58) or length alters the seed
  72. and thus generates a completely new set of passwords.
  73. PASSWORD FORMATS:
  74. {pfi}
  75. EXAMPLES:
  76. Generate ten base58 passwords of length {i58.dfl_len} for Alice's email account:
  77. {gc.prog_name} alice@nowhere.com 1-10
  78. Generate ten base58 passwords of length 16 for Alice's email account:
  79. {gc.prog_name} --passwd-len=16 alice@nowhere.com 1-10
  80. Generate ten base32 passwords of length {i32.dfl_len} for Alice's email account:
  81. {gc.prog_name} --passwd-fmt=b32 alice@nowhere.com 1-10
  82. Generate three BIP39 mnemonic seed phrases of length {i39.dfl_len} for Alice's
  83. Trezor device:
  84. {gc.prog_name} --passwd-fmt=bip39 mytrezor 1-3
  85. All passwords are cryptographically unlinkable with each other, including
  86. passwords with the same format but different length, so Alice needn't worry
  87. about inadvertent reuse of private data.
  88. NOTES FOR ALL GENERATOR COMMANDS
  89. {n_pw}
  90. {n_bw}
  91. {n_fmt}
  92. """
  93. },
  94. 'code': {
  95. 'options': lambda cfg, help_notes, s: s.format(
  96. cfg = cfg,
  97. dsl = help_notes('dfl_seed_len'),
  98. pl = PasswordList,
  99. gc = gc,
  100. ),
  101. 'notes': lambda cfg, help_notes, s: s.format(
  102. cfg = cfg,
  103. i58 = pwi['b58'],
  104. i32 = pwi['b32'],
  105. i39 = pwi['bip39'],
  106. ml = MMGenPWIDString.max_len,
  107. fs = '", "'.join(MMGenPWIDString.forbidden),
  108. n_pw = help_notes('passwd'),
  109. n_bw = help_notes('brainwallet'),
  110. pfi = help_notes('password_formats'),
  111. n_fmt = help_notes('fmt_codes'),
  112. gc = gc,
  113. )
  114. }
  115. }
  116. cfg = Config(opts_data=opts_data)
  117. if len(cfg._args) < 2:
  118. cfg._usage()
  119. pw_idxs = AddrIdxList(fmt_str=cfg._args.pop())
  120. pw_id_str = cfg._args.pop()
  121. from .fileutil import get_seed_file
  122. sf = get_seed_file(cfg, nargs=1)
  123. pw_fmt = cfg.passwd_fmt or PasswordList.dfl_pw_fmt
  124. pw_len = pwi[pw_fmt].dfl_len // 2 if cfg.passwd_len in ('h', 'H') else cfg.passwd_len
  125. from .protocol import init_proto
  126. proto = init_proto(cfg, 'btc') # TODO: get rid of dummy proto
  127. PasswordList(
  128. cfg = cfg,
  129. proto = proto,
  130. pw_id_str = pw_id_str,
  131. pw_len = pw_len,
  132. pw_fmt = pw_fmt,
  133. chk_params_only = True)
  134. from .ui import do_license_msg
  135. do_license_msg(cfg)
  136. ss = Wallet(cfg, fn=sf)
  137. al = PasswordList(
  138. cfg = cfg,
  139. proto = proto,
  140. seed = ss.seed,
  141. pw_idxs = pw_idxs,
  142. pw_id_str = pw_id_str,
  143. pw_len = pw_len,
  144. pw_fmt = pw_fmt)
  145. af = al.file
  146. af.format()
  147. if keypress_confirm(cfg, 'Encrypt password list?'):
  148. af.encrypt()
  149. af.write(binary=True, desc='encrypted password list')
  150. else:
  151. if cfg.test_suite_popen_spawn and sys.platform == 'win32':
  152. time.sleep(0.1)
  153. af.write(desc='password list')