Class: Saml::Elements::Signature::Transforms

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/saml/elements/signature/transforms.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Transforms

Returns a new instance of Transforms.



12
13
14
15
16
17
# File 'lib/saml/elements/signature/transforms.rb', line 12

def initialize(*args)
  @transform = [Transform.new(algorithm: "http://www.w3.org/2000/09/xmldsig#enveloped-signature"),
                Transform.new(algorithm: "http://www.w3.org/2001/10/xml-exc-c14n#",
                              inclusive_namespaces: InclusiveNamespaces.new)]
  super(*args)
end