| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Network.Wai.SAML2.Signature
Description
SAML2 signatures.
Synopsis
- data CanonicalisationMethod
- data SignatureMethod = RSA_SHA256
- data DigestMethod = DigestSHA256
- data SignedInfo = SignedInfo {}
- data Reference = Reference {}
- data Signature = Signature {}
Documentation
data CanonicalisationMethod Source #
Enumerates XML canonicalisation methods.
Constructors
| C14N_1_0 | Original C14N 1.0 specification. |
| C14N_EXC_1_0 | Exclusive C14N 1.0 specification. |
| C14N_1_1 | C14N 1.1 specification. |
Instances
| Show CanonicalisationMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> CanonicalisationMethod -> ShowS # show :: CanonicalisationMethod -> String # showList :: [CanonicalisationMethod] -> ShowS # | |
| Eq CanonicalisationMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods (==) :: CanonicalisationMethod -> CanonicalisationMethod -> Bool # (/=) :: CanonicalisationMethod -> CanonicalisationMethod -> Bool # | |
| FromXML CanonicalisationMethod Source # | |
Defined in Network.Wai.SAML2.Signature | |
data SignatureMethod Source #
Enumerates signature methods.
Constructors
| RSA_SHA256 | RSA with SHA256 digest |
Instances
| Show SignatureMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> SignatureMethod -> ShowS # show :: SignatureMethod -> String # showList :: [SignatureMethod] -> ShowS # | |
| Eq SignatureMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods (==) :: SignatureMethod -> SignatureMethod -> Bool # (/=) :: SignatureMethod -> SignatureMethod -> Bool # | |
| FromXML SignatureMethod Source # | |
Defined in Network.Wai.SAML2.Signature | |
data DigestMethod Source #
Enumerates digest methods.
Constructors
| DigestSHA256 | SHA256 |
Instances
| Show DigestMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> DigestMethod -> ShowS # show :: DigestMethod -> String # showList :: [DigestMethod] -> ShowS # | |
| Eq DigestMethod Source # | |
Defined in Network.Wai.SAML2.Signature | |
| FromXML DigestMethod Source # | |
Defined in Network.Wai.SAML2.Signature | |
data SignedInfo Source #
Represents references to some entities for which the IdP has calculated
digests. The SignedInfo component is then signed by the IdP.
Constructors
| SignedInfo | |
Fields
| |
Instances
| Show SignedInfo Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> SignedInfo -> ShowS # show :: SignedInfo -> String # showList :: [SignedInfo] -> ShowS # | |
| Eq SignedInfo Source # | |
Defined in Network.Wai.SAML2.Signature | |
| FromXML SignedInfo Source # | |
Defined in Network.Wai.SAML2.Signature | |
Represents a reference to some entity along with a digest of it.
Constructors
| Reference | |
Fields
| |
Represents response signatures.
Constructors
| Signature | |
Fields
| |