-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.rb
42 lines (29 loc) · 1.02 KB
/
test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
###
## note: use ruby ./test.rb to run test
require 'minitest/autorun'
def hash160( pubkey ) # public key to public key hash
# step 2 - perform SHA-256 hashing
# step 3 - perform RIPEMD-160 hashing on the result of SHA-256
# ...
end
def hash256( hex ) # double sha-256 hash
# step 5 - perform SHA-256 hash
# step 6 - perform SHA-256 hash on the result of the previous SHA-256 hash
# ...
end
def base58( hex )
# ...
end
class RubyQuizTest < MiniTest::Test
def test_addr
pubkey = '0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352'
pkh = hash160( pubkey )
assert_equal 'f54a5851e9372b87810a8e60cdd2e7cfd80b6e31', pkh
prefix = '00' ## version prefix
h = hash256( prefix + pkh )
assert_equal 'c7f18fe8fcbed6396741e58ad259b5cb16b7fd7f041904147ba1dcffabf747fd', h
assert_equal 'c7f18fe8', h[0..7]
addr = base58( prefix + pkh + h[0..7] )
assert_equal '1PMycacnJaSqwwJqjawXBErnLsZ7RkXUAs', addr
end # method test_addr
end # class RubyQuizTest