Sha256: 074468b96c6d73b814fc0213a03b8dd06da82d49e08f57b259489957f5cc1735
Contents?: true
Size: 934 Bytes
Versions: 6
Compression:
Stored size: 934 Bytes
Contents
# frozen_string_literal: true module Xml module Kit module Namespaces CANONICALIZATION = 'http://www.w3.org/2001/10/xml-exc-c14n#'.freeze ENVELOPED_SIG = 'http://www.w3.org/2000/09/xmldsig#enveloped-signature'.freeze RSA_SHA1 = 'http://www.w3.org/2000/09/xmldsig#rsa-sha1'.freeze RSA_SHA256 = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256'.freeze RSA_SHA384 = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384'.freeze RSA_SHA512 = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512'.freeze SHA1 = 'http://www.w3.org/2000/09/xmldsig#sha1'.freeze SHA256 = 'http://www.w3.org/2001/04/xmlenc#sha256'.freeze SHA384 = 'http://www.w3.org/2001/04/xmldsig-more#sha384'.freeze SHA512 = 'http://www.w3.org/2001/04/xmlenc#sha512'.freeze XMLDSIG = 'http://www.w3.org/2000/09/xmldsig#'.freeze XMLENC = 'http://www.w3.org/2001/04/xmlenc#'.freeze end end end
Version data entries
6 entries across 6 versions & 1 rubygems