Class: Saml::Elements::Signature::Transforms
- Inherits:
-
Object
- Object
- Saml::Elements::Signature::Transforms
- Includes:
- Base
- Defined in:
- lib/saml/elements/signature/transforms.rb
Instance Method Summary collapse
-
#initialize(*args) ⇒ Transforms
constructor
A new instance of Transforms.
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 |