class PkiExpress::PKAlgorithm

Attributes

name[RW]
oid[RW]

Private Class Methods

algorithms() click to toggle source
# File lib/pki_express/pk_algorithms.rb, line 142
def self.algorithms
  return [rsa]
end
new(name, oid) click to toggle source
# File lib/pki_express/pk_algorithms.rb, line 133
def initialize(name, oid)
  @name = name
  @oid = oid
end

Public Instance Methods

rsa() click to toggle source
# File lib/pki_express/pk_algorithms.rb, line 138
def rsa
  RSAPKAlgorithm.new
end