class SSHCertParser::PublicKeys::RSAPublicKey

Attributes

exponent[RW]
modulus[RW]
raw[RW]

Public Class Methods

new(modulus, exponent, raw = nil) click to toggle source
# File lib/ssh_cert_parser/public_keys/rsa_public_key.rb, line 8
def initialize(modulus, exponent, raw = nil)
  @modulus = modulus
  @exponent = exponent
  @raw = raw
end