Class: PKey::EC::Point
- Inherits:
-
Object
- Object
- PKey::EC::Point
- Defined in:
- lib/bitcoin.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.bn2mpi(hex) ⇒ Object
540 |
# File 'lib/bitcoin.rb', line 540 def self.bn2mpi(hex) BN.from_hex(hex).to_mpi; end |
.from_hex(group, hex) ⇒ Object
536 537 538 |
# File 'lib/bitcoin.rb', line 536 def self.from_hex(group, hex) new(group, BN.from_hex(hex)) end |
Instance Method Details
#ec_add(point) ⇒ Object
541 |
# File 'lib/bitcoin.rb', line 541 def ec_add(point); self.class.new(group, OpenSSL::BN.from_hex(OpenSSL_EC.ec_add(self, point))); end |
#to_hex ⇒ Object
539 |
# File 'lib/bitcoin.rb', line 539 def to_hex; to_bn.to_hex; end |