Class: OpenSSL::BN

Inherits:
Object
  • Object
show all
Defined in:
lib/bitcoin.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.from_hex(hex) ⇒ Object



458
# File 'lib/bitcoin.rb', line 458

def self.from_hex(hex); new(hex, 16); end

Instance Method Details

#to_hexObject



459
# File 'lib/bitcoin.rb', line 459

def to_hex; to_i.to_s(16); end

#to_mpiObject



460
# File 'lib/bitcoin.rb', line 460

def to_mpi; to_s(0).unpack("C*"); end