class OpenSSL::PKey::EC::Point
Public Instance Methods
to_hex()
click to toggle source
# File lib/rubycoin.rb, line 30 def to_hex; to_bn.to_i.to_s(16).rjust(130, '0'); end
x()
click to toggle source
# File lib/rubycoin.rb, line 31 def x; to_hex[2..65]; end
y()
click to toggle source
# File lib/rubycoin.rb, line 32 def y; to_hex[66..130]; end