Sha256: 7c38619916703c56df6dbc273476da5a8797440f919c7594fa9bdf360e562cf9
Contents?: true
Size: 371 Bytes
Versions: 100
Compression:
Stored size: 371 Bytes
Contents
module Saml module Elements class Signature class DigestMethod include Saml::Base tag "DigestMethod" namespace 'ds' attribute :algorithm, String, :tag => "Algorithm" def initialize(*args) @algorithm = "http://www.w3.org/2001/04/xmlenc#sha256" super(*args) end end end end end
Version data entries
100 entries across 100 versions & 1 rubygems