class Saml::Elements::KeyDescriptor
Public Instance Methods
certificate()
click to toggle source
# File lib/saml/elements/key_descriptor.rb, line 24 def certificate key_info.try(:x509Data).try(:x509certificate) end
certificate=(cert)
click to toggle source
# File lib/saml/elements/key_descriptor.rb, line 28 def certificate=(cert) self.key_info = KeyInfo.new(cert) end