Class: SAML2::KeyDescriptor

Inherits:
KeyInfo show all
Defined in:
lib/saml2/key.rb

Defined Under Namespace

Modules: Type Classes: EncryptionMethod

Instance Attribute Summary collapse

Attributes inherited from KeyInfo

#x509

Attributes inherited from Base

#xml

Instance Method Summary collapse

Methods inherited from KeyInfo

#certificate, #fingerprint, format_fingerprint

Methods inherited from Base

#decrypt, from_xml, #inspect, load_object_array, load_string_array, lookup_qname, #to_s, #to_xml

Constructor Details

#initialize(x509 = nil, use = nil, encryption_methods = []) ⇒ KeyDescriptor

Returns a new instance of KeyDescriptor.

Parameters:

  • x509 (String) (defaults to: nil)

    The PEM encoded certificate.

  • use (defaults to: nil)

    optional [String] See Type

  • encryption_methods (Array<EncryptionMethod>) (defaults to: [])


110
111
112
# File 'lib/saml2/key.rb', line 110

def initialize(x509 = nil, use = nil, encryption_methods = [])
  @use, self.x509, @encryption_methods = use, x509, encryption_methods
end

Instance Attribute Details

#encryption_methodsArray<EncryptionMethod>

Returns:



98
99
100
# File 'lib/saml2/key.rb', line 98

def encryption_methods
  @encryption_methods
end

#useString

Returns:

  • (String)

See Also:



96
97
98
# File 'lib/saml2/key.rb', line 96

def use
  @use
end

Instance Method Details

#build(builder) ⇒ void

This method returns an undefined value.

Serialize this object to XML, as part of a larger document

Parameters:

  • builder (Nokogiri::XML::Builder)

    The builder helper object to serialize to.



123
124
125
126
127
128
129
130
131
# File 'lib/saml2/key.rb', line 123

def build(builder)
  builder['md'].KeyDescriptor do |key_descriptor|
    key_descriptor.parent['use'] = use if use
    super(key_descriptor)
    encryption_methods.each do |method|
      method.build(key_descriptor)
    end
  end
end

#encryption?Boolean

Returns:

  • (Boolean)


114
115
116
# File 'lib/saml2/key.rb', line 114

def encryption?
  use.nil? || use == Type::ENCRYPTION
end

#from_xml(node) ⇒ void

This method returns an undefined value.

Parse an XML element into this object.

Parameters:

  • node (Nokogiri::XML::Element)


101
102
103
104
105
# File 'lib/saml2/key.rb', line 101

def from_xml(node)
  super
  self.use = node['use']
  self.encryption_methods = load_object_array(node, 'md:EncryptionMethod', EncryptionMethod)
end

#signing?Boolean

Returns:

  • (Boolean)


118
119
120
# File 'lib/saml2/key.rb', line 118

def signing?
  use.nil? || use == Type::SIGNING
end