Sha256: fb412815f409ecc11b3fd2d66c2d56c6b4ee1de7e322020c9c76506249063bd4
Contents?: true
Size: 819 Bytes
Versions: 15
Compression:
Stored size: 819 Bytes
Contents
module SAML2 module Namespaces DSIG = "http://www.w3.org/2000/09/xmldsig#".freeze METADATA = "urn:oasis:names:tc:SAML:2.0:metadata".freeze SAML = "urn:oasis:names:tc:SAML:2.0:assertion".freeze SAMLP = "urn:oasis:names:tc:SAML:2.0:protocol".freeze XENC = "http://www.w3.org/2001/04/xmlenc#".freeze XS = "http://www.w3.org/2001/XMLSchema".freeze XSI = "http://www.w3.org/2001/XMLSchema-instance".freeze X500 = "urn:oasis:names:tc:SAML:2.0:profiles:attribute:X500".freeze ALL = { 'xmlns:dsig' => DSIG, 'xmlns:md' => METADATA, 'xmlns:saml' => SAML, 'xmlns:samlp' => SAMLP, 'xmlns:x500' => X500, 'xmlns:xenc' => XENC, 'xmlns:xs' => XS, 'xmlns:xsi' => XSI, }.freeze end end
Version data entries
15 entries across 15 versions & 1 rubygems