addrgen.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2023 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. addrgen: Address generation initialization code for the MMGen suite
  20. """
  21. from .keygen import KeyGenerator # convenience import
  22. # decorator for to_addr() and to_viewkey()
  23. def check_data(orig_func):
  24. def f(self,data):
  25. assert data.pubkey_type == self.pubkey_type, 'addrgen.py:check_data() pubkey_type mismatch'
  26. assert data.compressed == self.compressed,(
  27. f'addrgen.py:check_data() expected compressed={self.compressed} but got compressed={data.compressed}'
  28. )
  29. return orig_func(self,data)
  30. return f
  31. class addr_generator:
  32. class base:
  33. def __init__(self,cfg,proto,addr_type):
  34. self.proto = proto
  35. self.pubkey_type = addr_type.pubkey_type
  36. self.compressed = addr_type.compressed
  37. desc = f'AddrGenerator {type(self).__name__!r}'
  38. class keccak(base):
  39. def __init__(self,cfg,proto,addr_type):
  40. super().__init__(cfg,proto,addr_type)
  41. from .util2 import get_keccak
  42. self.keccak_256 = get_keccak(cfg)
  43. def AddrGenerator(cfg,proto,addr_type):
  44. """
  45. factory function returning an address generator for the specified address type
  46. """
  47. package_map = {
  48. 'legacy': 'btc',
  49. 'compressed': 'btc',
  50. 'segwit': 'btc',
  51. 'bech32': 'btc',
  52. 'monero': 'xmr',
  53. 'ethereum': 'eth',
  54. 'zcash_z': 'zec',
  55. }
  56. from .addr import MMGenAddrType
  57. if type(addr_type) == str:
  58. addr_type = MMGenAddrType(proto=proto,id_str=addr_type)
  59. elif type(addr_type) == MMGenAddrType:
  60. assert addr_type in proto.mmtypes, f'{addr_type}: invalid address type for coin {proto.coin}'
  61. else:
  62. raise TypeError(f'{type(addr_type)}: incorrect argument type for {cls.__name__}()')
  63. import importlib
  64. return getattr(
  65. importlib.import_module(f'mmgen.proto.{package_map[addr_type.name]}.addrgen'),
  66. addr_type.name )(cfg,proto,addr_type)