Safe Haskell | None |
---|---|
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
Eq CanonicalisationMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods (==) :: CanonicalisationMethod -> CanonicalisationMethod -> Bool # (/=) :: CanonicalisationMethod -> CanonicalisationMethod -> Bool # | |
Show CanonicalisationMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> CanonicalisationMethod -> ShowS # show :: CanonicalisationMethod -> String # showList :: [CanonicalisationMethod] -> ShowS # | |
FromXML CanonicalisationMethod Source # | |
Defined in Network.Wai.SAML2.Signature |
data SignatureMethod Source #
Enumerates signature methods.
Constructors
RSA_SHA256 | RSA with SHA256 digest |
Instances
Eq SignatureMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods (==) :: SignatureMethod -> SignatureMethod -> Bool # (/=) :: SignatureMethod -> SignatureMethod -> Bool # | |
Show SignatureMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> SignatureMethod -> ShowS # show :: SignatureMethod -> String # showList :: [SignatureMethod] -> ShowS # | |
FromXML SignatureMethod Source # | |
Defined in Network.Wai.SAML2.Signature |
data DigestMethod Source #
Enumerates digest methods.
Constructors
DigestSHA256 | SHA256 |
Instances
Eq DigestMethod Source # | |
Defined in Network.Wai.SAML2.Signature | |
Show DigestMethod Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> DigestMethod -> ShowS # show :: DigestMethod -> String # showList :: [DigestMethod] -> ShowS # | |
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
Eq SignedInfo Source # | |
Defined in Network.Wai.SAML2.Signature | |
Show SignedInfo Source # | |
Defined in Network.Wai.SAML2.Signature Methods showsPrec :: Int -> SignedInfo -> ShowS # show :: SignedInfo -> String # showList :: [SignedInfo] -> ShowS # | |
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
|