class Integer

Add double dispatch to Integer

Public Instance Methods

to_bn() click to toggle source

Casts an Integer as an OpenSSL::BN

See `man bn` for more info.

# File lib/openssl_cms/bn.rb, line 41
def to_bn
  OpenSSL::BN::new(self)
end