Method: Integer#to_bn

Defined in:
lib/openssl/bn.rb

#to_bnObject

Casts an Integer as an OpenSSL::BN

See ‘man bn` for more info.



37
38
39
# File 'lib/openssl/bn.rb', line 37

def to_bn
  OpenSSL::BN::new(self)
end