Skip to content

Commit ea2fb09

Browse files
committed
up
1 parent 21d44dc commit ea2fb09

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -443,14 +443,20 @@ privatekey = 1234
443443
# Elliptic curve multiplication
444444
group = ECDSA::Group::Secp256k1 # Select the curve used in Bitcoin
445445
point = group.generator.multiply_by_scalar( privatekey ) # Multiply by integer (not hex)
446+
#=> <ECDSA::Point: secp256k1,
447+
# 0xe37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2,
448+
# 0x6d2ee9a82d4158f164ae653e9c6fa7f982ed8c94347fc05c2d068ff1d38b304c>
446449
447-
# Compressed format (even = 02, odd = 03)
450+
# Uncompressed format (with prefix 04)
451+
# Convert to 64 hexstring characters (32 bytes) in length
452+
prefix = '04'
453+
pubkey = prefix + "%064x" % point.x + "%064x" % point.y
454+
#=> "04e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f26d2ee9a82d4158f164ae653e9c6fa7f982ed8c94347fc05c2d068ff1d38b304c"
455+
456+
# Compressed format (with prefix - 02 = even / 03 = odd)
448457
# Instead of using both x and y coordinates,
449458
# just use the x-coordinate and whether y is even/odd
450459
prefix = point.y % 2 == 0 ? '02' : '03'
451-
452-
# Add the prefix to the x-coordinate
453-
# Convert to hex (and make sure it is 32 bytes / 64 characters in length)
454460
pubkey = prefix + "%064x" % point.x
455461
#=> "02e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2"
456462
```

pubkey.rb

+12-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,20 @@
66

77
# Elliptic curve multiplication
88
group = ECDSA::Group::Secp256k1 # Select the curve used in Bitcoin
9-
point = group.generator.multiply_by_scalar( privatekey ) # Multiply by integer (not hex)
9+
pp point = group.generator.multiply_by_scalar( privatekey ) # Multiply by integer (not hex)
10+
#=> <ECDSA::Point: secp256k1,
11+
# 0xe37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2,
12+
# 0x6d2ee9a82d4158f164ae653e9c6fa7f982ed8c94347fc05c2d068ff1d38b304c>
1013

11-
# Compressed format (even = 02, odd = 03)
14+
# Uncompressed format (with prefix 04)
15+
# Convert to 64 hexstring characters (32 bytes) in length
16+
prefix = '04'
17+
pp pubkey = prefix + "%064x" % point.x + "%064x" % point.y
18+
#=> "04e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f26d2ee9a82d4158f164ae653e9c6fa7f982ed8c94347fc05c2d068ff1d38b304c"
19+
20+
# Compressed format (with prefix - even = 02, odd = 03)
1221
# Instead of using both x and y coordinates,
1322
# just use the x-coordinate and whether y is even/odd
1423
prefix = point.y % 2 == 0 ? '02' : '03'
15-
16-
# Add the prefix to the x-coordinate
17-
# Convert to hex (and make sure it is 32 bytes / 64 characters in length)
1824
pp pubkey = prefix + "%064x" % point.x
19-
# => "02e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2"
25+
#=> "02e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2"

0 commit comments

Comments
 (0)