Class: Bitcoin::ExtKey
Overview
BIP32 Extended private key
Instance Attribute Summary collapse
-
#chain_code ⇒ Object
Returns the value of attribute chain_code.
-
#depth ⇒ Object
Returns the value of attribute depth.
-
#key ⇒ Object
Bitcoin::Key.
-
#number ⇒ Object
Returns the value of attribute number.
-
#parent_fingerprint ⇒ Object
Returns the value of attribute parent_fingerprint.
-
#ver ⇒ Object
Returns the value of attribute ver.
Class Method Summary collapse
-
.from_base58(address) ⇒ Object
import private key from Base58 private key address.
-
.generate_master(seed) ⇒ Object
generate master key from seed.
- .parse_from_payload(payload) ⇒ Object
-
.support_version?(version) ⇒ Boolean
check whether
version
is supported version bytes. -
.version_from_purpose(purpose) ⇒ Object
get version bytes from purpose’ value.
Instance Method Summary collapse
-
#addr ⇒ Object
get address.
-
#derive(number, harden = false) ⇒ Bitcoin::ExtKey
derive new key.
-
#ext_pubkey ⇒ Object
get ExtPubkey from priv_key.
-
#fingerprint ⇒ Object
get fingerprint.
-
#hardened? ⇒ Boolean
whether hardened key.
- #hash160 ⇒ Object
-
#identifier ⇒ Object
get key identifier.
-
#key_type ⇒ Object
get key type defined by BIP-178 using version.
-
#priv ⇒ Object
get private key(hex).
-
#priv_ver_to_pub_ver ⇒ Object
convert privkey version to pubkey version.
-
#pub ⇒ Object
get public key(hex).
-
#to_base58 ⇒ Object
Base58 encoded extended private key.
-
#to_payload ⇒ Object
serialize extended private key.
-
#version ⇒ Object
get version bytes using serialization format.
Instance Attribute Details
#chain_code ⇒ Object
Returns the value of attribute chain_code.
12 13 14 |
# File 'lib/bitcoin/ext_key.rb', line 12 def chain_code @chain_code end |
#depth ⇒ Object
Returns the value of attribute depth.
10 11 12 |
# File 'lib/bitcoin/ext_key.rb', line 10 def depth @depth end |
#number ⇒ Object
Returns the value of attribute number.
11 12 13 |
# File 'lib/bitcoin/ext_key.rb', line 11 def number @number end |
#parent_fingerprint ⇒ Object
Returns the value of attribute parent_fingerprint.
14 15 16 |
# File 'lib/bitcoin/ext_key.rb', line 14 def parent_fingerprint @parent_fingerprint end |
#ver ⇒ Object
Returns the value of attribute ver.
9 10 11 |
# File 'lib/bitcoin/ext_key.rb', line 9 def ver @ver end |
Class Method Details
.from_base58(address) ⇒ Object
import private key from Base58 private key address
150 151 152 |
# File 'lib/bitcoin/ext_key.rb', line 150 def self.from_base58(address) ExtKey.parse_from_payload(Base58.decode(address).htb) end |
.generate_master(seed) ⇒ Object
generate master key from seed.
18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/bitcoin/ext_key.rb', line 18 def self.generate_master(seed) ext_key = ExtKey.new ext_key.depth = ext_key.number = 0 ext_key.parent_fingerprint = '00000000' l = Bitcoin.hmac_sha512('Bitcoin seed', seed.htb) left = l[0..31].bth.to_i(16) raise 'invalid key' if left >= CURVE_ORDER || left == 0 ext_key.key = Bitcoin::Key.new(priv_key: l[0..31].bth, key_type: Bitcoin::Key::TYPES[:compressed]) ext_key.chain_code = l[32..-1] ext_key end |
.parse_from_payload(payload) ⇒ Object
135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/bitcoin/ext_key.rb', line 135 def self.parse_from_payload(payload) buf = StringIO.new(payload) ext_key = ExtKey.new ext_key.ver = buf.read(4).bth # version raise 'An unsupported version byte was specified.' unless ExtKey.support_version?(ext_key.ver) ext_key.depth = buf.read(1).unpack('C').first ext_key.parent_fingerprint = buf.read(4).bth ext_key.number = buf.read(4).unpack('N').first ext_key.chain_code = buf.read(32) buf.read(1) # 0x00 ext_key.key = Bitcoin::Key.new(priv_key: buf.read(32).bth, key_type: Bitcoin::Key::TYPES[:compressed]) ext_key end |
.support_version?(version) ⇒ Boolean
check whether version
is supported version bytes.
168 169 170 171 |
# File 'lib/bitcoin/ext_key.rb', line 168 def self.support_version?(version) p = Bitcoin.chain_params [p.bip49_privkey_p2wpkh_p2sh_version, p.bip84_privkey_p2wpkh_version, p.extended_privkey_version].include?(version) end |
.version_from_purpose(purpose) ⇒ Object
get version bytes from purpose’ value.
155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/bitcoin/ext_key.rb', line 155 def self.version_from_purpose(purpose) v = purpose - 2**31 case v when 49 Bitcoin.chain_params.bip49_privkey_p2wpkh_p2sh_version when 84 Bitcoin.chain_params.bip84_privkey_p2wpkh_version else Bitcoin.chain_params.extended_privkey_version end end |
Instance Method Details
#addr ⇒ Object
get address
70 71 72 |
# File 'lib/bitcoin/ext_key.rb', line 70 def addr ext_pubkey.addr end |
#derive(number, harden = false) ⇒ Bitcoin::ExtKey
derive new key
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/bitcoin/ext_key.rb', line 93 def derive(number, harden = false) number += 2**31 if harden new_key = ExtKey.new new_key.depth = depth + 1 new_key.number = number new_key.parent_fingerprint = fingerprint if number > (2**31 -1) data = [0x00].pack('C') << key.priv_key.htb << [number].pack('N') else data = key.pubkey.htb << [number].pack('N') end l = Bitcoin.hmac_sha512(chain_code, data) left = l[0..31].bth.to_i(16) raise 'invalid key' if left >= CURVE_ORDER child_priv = (left + key.priv_key.to_i(16)) % CURVE_ORDER raise 'invalid key ' if child_priv >= CURVE_ORDER new_key.key = Bitcoin::Key.new( priv_key: child_priv.to_even_length_hex.rjust(64, '0'), key_type: key_type) new_key.chain_code = l[32..-1] new_key.ver = version new_key end |
#ext_pubkey ⇒ Object
get ExtPubkey from priv_key
31 32 33 34 35 36 37 38 39 40 |
# File 'lib/bitcoin/ext_key.rb', line 31 def ext_pubkey k = ExtPubkey.new k.depth = depth k.number = number k.parent_fingerprint = parent_fingerprint k.chain_code = chain_code k.pubkey = key.pubkey k.ver = priv_ver_to_pub_ver k end |
#fingerprint ⇒ Object
get fingerprint
80 81 82 |
# File 'lib/bitcoin/ext_key.rb', line 80 def fingerprint identifier.slice(0..7) end |
#hardened? ⇒ Boolean
whether hardened key.
85 86 87 |
# File 'lib/bitcoin/ext_key.rb', line 85 def hardened? number >= 2**31 end |
#hash160 ⇒ Object
65 66 67 |
# File 'lib/bitcoin/ext_key.rb', line 65 def hash160 Bitcoin.hash160(pub) end |
#identifier ⇒ Object
get key identifier
75 76 77 |
# File 'lib/bitcoin/ext_key.rb', line 75 def identifier Bitcoin.hash160(key.pubkey) end |
#key_type ⇒ Object
get key type defined by BIP-178 using version.
123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/bitcoin/ext_key.rb', line 123 def key_type v = version case v when Bitcoin.chain_params.bip49_privkey_p2wpkh_p2sh_version Bitcoin::Key::TYPES[:pw2pkh_p2sh] when Bitcoin.chain_params.bip84_privkey_p2wpkh_version Bitcoin::Key::TYPES[:p2wpkh] when Bitcoin.chain_params.extended_privkey_version Bitcoin::Key::TYPES[:compressed] end end |
#priv ⇒ Object
get private key(hex)
56 57 58 |
# File 'lib/bitcoin/ext_key.rb', line 56 def priv key.priv_key end |
#priv_ver_to_pub_ver ⇒ Object
convert privkey version to pubkey version
174 175 176 177 178 179 180 181 182 183 |
# File 'lib/bitcoin/ext_key.rb', line 174 def priv_ver_to_pub_ver case version when Bitcoin.chain_params.bip49_privkey_p2wpkh_p2sh_version Bitcoin.chain_params.bip49_pubkey_p2wpkh_p2sh_version when Bitcoin.chain_params.bip84_privkey_p2wpkh_version Bitcoin.chain_params.bip84_pubkey_p2wpkh_version else Bitcoin.chain_params.extended_pubkey_version end end |
#pub ⇒ Object
get public key(hex)
61 62 63 |
# File 'lib/bitcoin/ext_key.rb', line 61 def pub key.pubkey end |
#to_base58 ⇒ Object
Base58 encoded extended private key
49 50 51 52 53 |
# File 'lib/bitcoin/ext_key.rb', line 49 def to_base58 h = to_payload.bth hex = h + Bitcoin.calc_checksum(h) Base58.encode(hex) end |
#to_payload ⇒ Object
serialize extended private key
43 44 45 46 |
# File 'lib/bitcoin/ext_key.rb', line 43 def to_payload version.htb << [depth].pack('C') << parent_fingerprint.htb << [number].pack('N') << chain_code << [0x00].pack('C') << key.priv_key.htb end |
#version ⇒ Object
get version bytes using serialization format
117 118 119 120 |
# File 'lib/bitcoin/ext_key.rb', line 117 def version return ExtKey.version_from_purpose(number) if depth == 1 ver ? ver : Bitcoin.chain_params.extended_privkey_version end |