class PkiExpress::RSAPKAlgorithm
Public Class Methods
get_signature_algorithm(digest_algorithm)
click to toggle source
# File lib/pki_express/pk_algorithms.rb, line 153 def get_signature_algorithm(digest_algorithm) RSASignatureAlgorithm.new(digest_algorithm) end
new()
click to toggle source
Calls superclass method
PkiExpress::PKAlgorithm::new
# File lib/pki_express/pk_algorithms.rb, line 149 def initialize super(PKAlgorithms::RSA, Oids::RSA) end