baseconv.py 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2021 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. baseconv.py: base conversion class for the MMGen suite
  20. """
  21. from hashlib import sha256
  22. from .exception import *
  23. from .util import die
  24. def is_b58_str(s): return set(list(s)) <= set(baseconv.digits['b58'])
  25. def is_b32_str(s): return set(list(s)) <= set(baseconv.digits['b32'])
  26. class baseconv(object):
  27. desc = {
  28. 'b58': ('base58', 'base58-encoded data'),
  29. 'b32': ('MMGen base32', 'MMGen base32-encoded data created using simple base conversion'),
  30. 'b16': ('hexadecimal string','base16 (hexadecimal) string data'),
  31. 'b10': ('base10 string', 'base10 (decimal) string data'),
  32. 'b8': ('base8 string', 'base8 (octal) string data'),
  33. 'b6d': ('base6d (die roll)', 'base6 data using the digits from one to six'),
  34. 'tirosh':('Tirosh mnemonic', 'base1626 mnemonic using truncated Tirosh wordlist'), # not used by wallet
  35. 'mmgen': ('MMGen native mnemonic',
  36. 'MMGen native mnemonic seed phrase created using old Electrum wordlist and simple base conversion'),
  37. 'xmrseed': ('Monero mnemonic', 'Monero new-style mnemonic seed phrase'),
  38. }
  39. # https://en.wikipedia.org/wiki/Base32#RFC_4648_Base32_alphabet
  40. # https://tools.ietf.org/html/rfc4648
  41. digits = {
  42. 'b58': tuple('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'),
  43. 'b32': tuple('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'), # RFC 4648 alphabet
  44. 'b16': tuple('0123456789abcdef'),
  45. 'b10': tuple('0123456789'),
  46. 'b8': tuple('01234567'),
  47. 'b6d': tuple('123456'),
  48. }
  49. mn_base = 1626 # tirosh list is 1633 words long!
  50. wl_chksums = {
  51. 'mmgen': '5ca31424',
  52. 'xmrseed':'3c381ebb',
  53. 'tirosh': '48f05e1f', # tirosh truncated to mn_base (1626)
  54. # 'tirosh1633': '1a5faeff'
  55. }
  56. seedlen_map = {
  57. 'b58': { 16:22, 24:33, 32:44 },
  58. 'b6d': { 16:50, 24:75, 32:100 },
  59. 'mmgen': { 16:12, 24:18, 32:24 },
  60. 'xmrseed': { 32:25 },
  61. }
  62. seedlen_map_rev = {
  63. 'b58': { 22:16, 33:24, 44:32 },
  64. 'b6d': { 50:16, 75:24, 100:32 },
  65. 'mmgen': { 12:16, 18:24, 24:32 },
  66. 'xmrseed': { 25:32 },
  67. }
  68. @classmethod
  69. def init_mn(cls,mn_id):
  70. if mn_id in cls.digits:
  71. return
  72. if mn_id == 'mmgen':
  73. from .mn_electrum import words
  74. cls.digits[mn_id] = words
  75. elif mn_id == 'xmrseed':
  76. from .mn_monero import words
  77. cls.digits[mn_id] = words
  78. elif mn_id == 'tirosh':
  79. from .mn_tirosh import words
  80. cls.digits[mn_id] = words[:cls.mn_base]
  81. else:
  82. raise ValueError('{}: unrecognized mnemonic ID'.format(mn_id))
  83. @classmethod
  84. def get_wordlist(cls,wl_id):
  85. cls.init_mn(wl_id)
  86. return cls.digits[wl_id]
  87. @classmethod
  88. def get_wordlist_chksum(cls,wl_id):
  89. cls.init_mn(wl_id)
  90. return sha256(' '.join(cls.digits[wl_id]).encode()).hexdigest()[:8]
  91. @classmethod
  92. def check_wordlists(cls):
  93. for k,v in list(cls.wl_chksums.items()):
  94. res = cls.get_wordlist_chksum(k)
  95. assert res == v,'{}: checksum mismatch for {} (should be {})'.format(res,k,v)
  96. return True
  97. @classmethod
  98. def check_wordlist(cls,wl_id):
  99. cls.init_mn(wl_id)
  100. wl = cls.digits[wl_id]
  101. from .util import qmsg,compare_chksums
  102. ret = 'Wordlist: {}\nLength: {} words'.format(wl_id,len(wl))
  103. new_chksum = cls.get_wordlist_chksum(wl_id)
  104. a,b = 'generated','saved'
  105. compare_chksums(new_chksum,a,cls.wl_chksums[wl_id],b,die_on_fail=True)
  106. if tuple(sorted(wl)) == wl:
  107. return ret + '\nList is sorted'
  108. else:
  109. die(3,'ERROR: List is not sorted!')
  110. @classmethod
  111. def get_pad(cls,pad,seed_pad_func):
  112. """
  113. 'pad' argument to baseconv conversion methods must be either None, 'seed' or an integer.
  114. If None, output of minimum (but never zero) length will be produced.
  115. If 'seed', output length will be mapped from input length using data in seedlen_map.
  116. If an integer, the string, hex string or byte output will be padded to this length.
  117. """
  118. if pad == None:
  119. return 0
  120. elif type(pad) == int:
  121. return pad
  122. elif pad == 'seed':
  123. return seed_pad_func()
  124. else:
  125. m = "{!r}: illegal value for 'pad' (must be None,'seed' or int)"
  126. raise BaseConversionPadError(m.format(pad))
  127. @staticmethod
  128. def monero_mn_checksum(words):
  129. from binascii import crc32
  130. wstr = ''.join(word[:3] for word in words)
  131. return words[crc32(wstr.encode()) % len(words)]
  132. @classmethod
  133. def tohex(cls,words_arg,wl_id,pad=None):
  134. "convert string or list data of base 'wl_id' to hex string"
  135. return cls.tobytes(words_arg,wl_id,pad//2 if type(pad)==int else pad).hex()
  136. @classmethod
  137. def tobytes(cls,words_arg,wl_id,pad=None):
  138. "convert string or list data of base 'wl_id' to byte string"
  139. if wl_id not in cls.digits:
  140. cls.init_mn(wl_id)
  141. words = words_arg if isinstance(words_arg,(list,tuple)) else tuple(words_arg.strip())
  142. desc = cls.desc[wl_id][0]
  143. if len(words) == 0:
  144. raise BaseConversionError('empty {} data'.format(desc))
  145. def get_seed_pad():
  146. assert wl_id in cls.seedlen_map_rev,'seed padding not supported for base {!r}'.format(wl_id)
  147. d = cls.seedlen_map_rev[wl_id]
  148. if not len(words) in d:
  149. m = '{}: invalid length for seed-padded {} data in base conversion'
  150. raise BaseConversionError(m.format(len(words),desc))
  151. return d[len(words)]
  152. pad_val = max(cls.get_pad(pad,get_seed_pad),1)
  153. wl = cls.digits[wl_id]
  154. base = len(wl)
  155. if not set(words) <= set(wl):
  156. m = ('{w!r}:','seed data')[pad=='seed'] + ' not in {d} format'
  157. raise BaseConversionError(m.format(w=words_arg,d=desc))
  158. if wl_id == 'xmrseed':
  159. if len(words) not in cls.seedlen_map_rev['xmrseed']:
  160. die(2,'{}: invalid length for Monero mnemonic'.format(len(words)))
  161. z = cls.monero_mn_checksum(words[:-1])
  162. assert z == words[-1],'invalid Monero mnemonic checksum'
  163. words = tuple(words[:-1])
  164. ret = b''
  165. for i in range(len(words)//3):
  166. w1,w2,w3 = [wl.index(w) for w in words[3*i:3*i+3]]
  167. x = w1 + base*((w2-w1)%base) + base*base*((w3-w2)%base)
  168. ret += x.to_bytes(4,'big')[::-1]
  169. return ret
  170. ret = sum([wl.index(words[::-1][i])*(base**i) for i in range(len(words))])
  171. bl = ret.bit_length()
  172. return ret.to_bytes(max(pad_val,bl//8+bool(bl%8)),'big')
  173. @classmethod
  174. def fromhex(cls,hexstr,wl_id,pad=None,tostr=False):
  175. "convert hex string to list or string data of base 'wl_id'"
  176. from .util import is_hex_str
  177. if not is_hex_str(hexstr):
  178. m = ('{h!r}:','seed data')[pad=='seed'] + ' not a hexadecimal string'
  179. raise HexadecimalStringError(m.format(h=hexstr))
  180. return cls.frombytes(bytes.fromhex(hexstr),wl_id,pad,tostr)
  181. @classmethod
  182. def frombytes(cls,bytestr,wl_id,pad=None,tostr=False):
  183. "convert byte string to list or string data of base 'wl_id'"
  184. if wl_id not in cls.digits:
  185. cls.init_mn(wl_id)
  186. if not bytestr:
  187. raise BaseConversionError('empty data not allowed in base conversion')
  188. def get_seed_pad():
  189. assert wl_id in cls.seedlen_map,'seed padding not supported for base {!r}'.format(wl_id)
  190. d = cls.seedlen_map[wl_id]
  191. if not len(bytestr) in d:
  192. m = '{}: invalid byte length for seed data in seed-padded base conversion'
  193. raise SeedLengthError(m.format(len(bytestr)))
  194. return d[len(bytestr)]
  195. pad = max(cls.get_pad(pad,get_seed_pad),1)
  196. wl = cls.digits[wl_id]
  197. base = len(wl)
  198. if wl_id == 'xmrseed':
  199. if len(bytestr) not in cls.seedlen_map['xmrseed']:
  200. die(2,'{}: invalid seed byte length for Monero mnemonic'.format(len(bytestr)))
  201. def num2base_monero(num):
  202. w1 = num % base
  203. w2 = (num//base + w1) % base
  204. w3 = (num//base//base + w2) % base
  205. return [wl[w1], wl[w2], wl[w3]]
  206. o = []
  207. for i in range(len(bytestr)//4):
  208. o += num2base_monero(int.from_bytes(bytestr[i*4:i*4+4][::-1],'big'))
  209. o.append(cls.monero_mn_checksum(o))
  210. else:
  211. num = int.from_bytes(bytestr,'big')
  212. ret = []
  213. while num:
  214. ret.append(num % base)
  215. num //= base
  216. o = [wl[n] for n in [0] * (pad-len(ret)) + ret[::-1]]
  217. return (' ' if wl_id in ('mmgen','xmrseed') else '').join(o) if tostr else o