Class: Beowulf::Wallet

Inherits:
Object
  • Object
show all
Includes:
ChainConfig, Utils
Defined in:
lib/beowulf/wallet.rb

Constant Summary

Constants included from ChainConfig

ChainConfig::EXPIRE_IN_SECS, ChainConfig::EXPIRE_IN_SECS_PROPOSAL, ChainConfig::NETWORKS_BEOWULF_ADDRESS_PREFIX, ChainConfig::NETWORKS_BEOWULF_BWF_ASSET, ChainConfig::NETWORKS_BEOWULF_CHAIN_ID, ChainConfig::NETWORKS_BEOWULF_DEFAULT_NODE, ChainConfig::NETWORKS_BEOWULF_VEST_ASSET, ChainConfig::NETWORKS_BEOWULF_W_ASSET, ChainConfig::NETWORK_CHAIN_IDS

Instance Method Summary collapse

Methods included from Utils

#debug, #error, #extract_signatures, #hexlify, #pakArr, #pakC, #pakHash, #pakI, #pakL!, #pakPubKey, #pakQ, #pakS, #pakStr, #pakc, #pakq, #paks, #send_log, #unhexlify, #varint, #warning

Constructor Details

#initialize(options = {}) ⇒ Wallet

Returns a new instance of Wallet.



11
12
13
14
15
16
17
18
# File 'lib/beowulf/wallet.rb', line 11

def initialize(options = {})
  @name = options[:name] || ''
  @private_key = options[:private_key] || ''
  @public_key = options[:public_key] || ''
  @cipher_keys = options[:cipher_keys] || ''
  @cipher_type = 'aes-256-cbc'
  @salt = options[:salt] || ''
end

Instance Method Details

#decrypt(key, data) ⇒ Object



199
200
201
202
203
204
205
206
207
208
209
# File 'lib/beowulf/wallet.rb', line 199

def decrypt(key, data)
  block = key[0..31]
  aes = OpenSSL::Cipher.new('AES-256-CBC')
  aes.decrypt
  last = 31 + aes.block_size
  # puts "last:", last
  aes.iv = key[32..last]
  aes.key = block
  final_msg = aes.update(data) + aes.final
  final_msg
end

#encrypt(key, data) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
# File 'lib/beowulf/wallet.rb', line 142

def encrypt(key, data)
  block = key[0..31]
  aes = OpenSSL::Cipher.new('AES-256-CBC')
  aes.encrypt
  last = 31 + aes.block_size
  # puts "last:", last
  aes.iv = key[32..last]
  aes.key = block
  final_msg = aes.update(data) + aes.final
  final_msg
end

#gen_keysObject



32
33
34
35
36
37
# File 'lib/beowulf/wallet.rb', line 32

def gen_keys
  @private_key = gen_priv
  # puts "priv_key:", @private_key
  @public_key = gen_pub
  # puts "pub_key:", @public_key
end

#gen_privObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/beowulf/wallet.rb', line 39

def gen_priv
  rd = SecureRandom.alphanumeric(128)
  # puts "rd:", rd
  seed = @name + "owner" + rd
  # puts "seed:", seed
  bytes = pakStr(seed)
  hashSha256 = Digest::SHA256.digest(bytes)
  # create checksum
  pk = unhexlify('80')
  pk << hashSha256
  chs = Digest::SHA256.digest(pk)
  chs = Digest::SHA256.digest(chs)
  # create private key.
  b58 = pk
  b58 << chs[0..3]
  # puts "gen_priv.b58:", hexlify(b58)
  priv_key = Base58.binary_to_base58(b58, :bitcoin)
  priv_key
end

#gen_pubObject



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/beowulf/wallet.rb', line 59

def gen_pub
  if @private_key.length > 0
    b58 = Base58.base58_to_binary(@private_key, :bitcoin)
    # puts "b58:", hexlify(b58)
    # Get checksum 4-bytes end.
    lb58 = b58.length-4
    chs = b58[lb58..-1]
    # Get raw private key
    hb58 = lb58-1
    tpk = b58[0..hb58]
    # Test checksum private key
    nchs = Digest::SHA256.digest(tpk)
    nchs = Digest::SHA256.digest(nchs)
    achs = hexlify(chs)
    bnchs = hexlify(nchs[0..3])
    if !(achs.eql? bnchs)
      puts achs, bnchs
      puts 'Invalid private key (checksum miss-match)'
    end
    # Create Public Key
    bk = Bitcoin::Key.new(hexlify(tpk[1..-1]), nil, {compressed: true})
    # puts "bk.compressed:", bk.compressed
    public_key_hex = bk.pub
    # puts "public_key_hex.length:", public_key_hex.length
    # puts "public_key_hex:", public_key_hex
    public_key_byte = unhexlify(public_key_hex)
    checksum = OpenSSL::Digest::RIPEMD160.digest(public_key_byte)
    public_key = NETWORKS_BEOWULF_ADDRESS_PREFIX + Base58.binary_to_base58(public_key_byte + checksum[0..3], :bitcoin)
    public_key
  end
end

#nameObject



20
21
22
# File 'lib/beowulf/wallet.rb', line 20

def name
  @name
end

#private_keyObject



24
25
26
# File 'lib/beowulf/wallet.rb', line 24

def private_key
  @private_key
end

#public_keyObject



28
29
30
# File 'lib/beowulf/wallet.rb', line 28

def public_key
  @public_key
end

#read_wallet_file(wallet_path_file, password) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/beowulf/wallet.rb', line 154

def read_wallet_file(wallet_path_file, password)
  # puts "wallet_path_file:", wallet_path_file
  # Validate inputs
  if wallet_path_file == nil || wallet_path_file.length == 0
    puts "Path file wallet is not empty."
  end
  if password == nil || password.length == 0
    puts "Password is not empty."
  end
  # Read file wallet
  file = File.read(wallet_path_file)
  wallet_json = JSON.parse(file)
  # puts "wallet_json:", wallet_json
  # Init properties wallet
  @name = wallet_json['name']
  @cipher_keys = wallet_json['cipher_keys']
  # puts "read_wallet_file.cipher_keys:", @cipher_keys
  @salt = wallet_json['salt']
  # Create checksum
  new_password = password + @salt
  # puts "new_password:", new_password
  pw_bytes = pakStr(new_password)
  checksum = Digest::SHA512.digest(pw_bytes)
  chs = hexlify(checksum)
  # puts "chs", chs
  # Decrypt data
  data_byte = unhexlify(@cipher_keys)
  # Decrypt AES
  msg_decrypt = decrypt(chs, data_byte)
  # puts "msg_decrypt:", msg_decrypt
  msg_json = JSON.parse(msg_decrypt)
  # puts "msg_json:", msg_json
  dechs = msg_json['checksum']
  if !(chs.eql? dechs)
    puts "Password wrong."
  end
  keys = msg_json['keys']
  keys.each do |key, value|
    # puts "#{key} is #{value}"
    @public_key = key
    @private_key = value
  end
end

#save_wallet_file(wallet_path, wallet_filename, password) ⇒ Object



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/beowulf/wallet.rb', line 91

def save_wallet_file(wallet_path, wallet_filename, password)
  # Validate
  if password == nil || password.length == 0
    puts "Password is not empty."
  end
  if password.length < 8
    puts "Password length >= 8 character."
  end
  if @name == nil || @name.length == 0
    puts "name is not empty."
  end

  # Encrypt data
  # Create checksum
  @salt = SecureRandom.alphanumeric(16)
  new_password = password + @salt
  # puts "new_password:", new_password
  pw_bytes = pakStr(new_password)
  checksum = Digest::SHA512.digest(pw_bytes)
  chs = hexlify(checksum)
  # puts "chs", chs
  # Create plain_data
  keys = {@public_key => @private_key}
  # puts "keys:", keys
  plain_keys = {"checksum" => chs, "keys" => keys}
  plain_data = JSON.dump(plain_keys)
  # puts "plain_data:", plain_data

  # Encrypt AES
  msg_encrypt = encrypt(chs, plain_data)
  msg_hex = hexlify(msg_encrypt)
  # puts "msg_hex:", msg_hex
  @cipher_keys = msg_hex

  # Write file
  file_path = wallet_filename
  if wallet_filename.length == 0
    file_path = @name + "-wallet.json"
  end
  if wallet_path.length > 0
    file_path = File.join(wallet_path, file_path)
  end
  # puts "file_path:", file_path
  # Create data save.
  wallet_data = {"cipher_keys" => @cipher_keys, "cipher_type" => @cipher_type, "salt" => @salt, "name" => @name}
  wallet_json = JSON.dump(wallet_data)
  # puts "wallet_json:", wallet_json
  File.open(file_path, "w") { |file| file.puts wallet_json}
end