main
1# frozen_string_literal: true
2
3module Xml
4 module Kit
5 module Namespaces
6 CANONICALIZATION = 'http://www.w3.org/2001/10/xml-exc-c14n#'
7 ENVELOPED_SIG = 'http://www.w3.org/2000/09/xmldsig#enveloped-signature'
8 RSA_SHA1 = 'http://www.w3.org/2000/09/xmldsig#rsa-sha1'
9 RSA_SHA256 = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256'
10 RSA_SHA384 = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384'
11 RSA_SHA512 = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512'
12 SHA1 = 'http://www.w3.org/2000/09/xmldsig#sha1'
13 SHA256 = 'http://www.w3.org/2001/04/xmlenc#sha256'
14 SHA384 = 'http://www.w3.org/2001/04/xmldsig-more#sha384'
15 SHA512 = 'http://www.w3.org/2001/04/xmlenc#sha512'
16 XMLDSIG = 'http://www.w3.org/2000/09/xmldsig#'
17 XMLENC = 'http://www.w3.org/2001/04/xmlenc#'
18 end
19 end
20end