File tree 2 files changed +22
-10
lines changed
2 files changed +22
-10
lines changed Original file line number Diff line number Diff line change @@ -443,14 +443,20 @@ privatekey = 1234
443
443
# Elliptic curve multiplication
444
444
group = ECDSA::Group::Secp256k1 # Select the curve used in Bitcoin
445
445
point = group.generator.multiply_by_scalar( privatekey ) # Multiply by integer (not hex)
446
+ #=> <ECDSA::Point: secp256k1,
447
+ # 0xe37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2,
448
+ # 0x6d2ee9a82d4158f164ae653e9c6fa7f982ed8c94347fc05c2d068ff1d38b304c>
446
449
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)
448
457
# Instead of using both x and y coordinates,
449
458
# just use the x-coordinate and whether y is even/odd
450
459
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)
454
460
pubkey = prefix + "%064x" % point.x
455
461
#=> "02e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2"
456
462
```
Original file line number Diff line number Diff line change 6
6
7
7
# Elliptic curve multiplication
8
8
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>
10
13
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)
12
21
# Instead of using both x and y coordinates,
13
22
# just use the x-coordinate and whether y is even/odd
14
23
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)
18
24
pp pubkey = prefix + "%064x" % point . x
19
- # => "02e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2"
25
+ #=> "02e37648435c60dcd181b3d41d50857ba5b5abebe279429aa76558f6653f1658f2"
You can’t perform that action at this time.
0 commit comments