HsOpenSSL-0.2: (Part of) OpenSSL binding for HaskellContentsIndex
OpenSSL.X509.Revocation
Contents
Types
Functions to manipulate revocation list
Accessors
Description
An interface to Certificate Revocation List.
Synopsis
data CRL
data RevokedCertificate = RevokedCertificate {
revSerialNumber :: Integer
revRevocationDate :: UTCTime
}
newCRL :: IO CRL
signCRL :: CRL -> PKey -> Maybe Digest -> IO ()
verifyCRL :: CRL -> PKey -> IO VerifyStatus
printCRL :: CRL -> IO String
sortCRL :: CRL -> IO ()
getVersion :: CRL -> IO Int
setVersion :: CRL -> Int -> IO ()
getLastUpdate :: CRL -> IO UTCTime
setLastUpdate :: CRL -> UTCTime -> IO ()
getNextUpdate :: CRL -> IO UTCTime
setNextUpdate :: CRL -> UTCTime -> IO ()
getIssuerName :: CRL -> Bool -> IO [(String, String)]
setIssuerName :: CRL -> [(String, String)] -> IO ()
getRevokedList :: CRL -> IO [RevokedCertificate]
addRevoked :: CRL -> RevokedCertificate -> IO ()
Types
data CRL
CRL is an opaque object that represents Certificate Revocation List.
data RevokedCertificate
RevokedCertificate represents a revoked certificate in a list. Each certificates are supposed to be distinguishable by issuer name and serial number, so it is sufficient to have only serial number on each entries.
Constructors
RevokedCertificate
revSerialNumber :: Integer
revRevocationDate :: UTCTime
show/hide Instances
Functions to manipulate revocation list
newCRL :: IO CRL

newCRL creates an empty revocation list. You must set the following properties to and sign it (see signCRL) to actually use the revocation list. If you have any certificates to be listed, you must of course add them (see addRevoked) before signing the list.

Version
See setVersion.
Last Update
See setLastUpdate.
Next Update
See setNextUpdate.
Issuer Name
See setIssuerName.
signCRL
:: CRLThe revocation list to be signed.
-> PKeyThe private key to sign with.
-> Maybe DigestA hashing algorithm to use. If Nothing the most suitable algorithm for the key is automatically used.
-> IO ()
signCRL signs a revocation list with an issuer private key.
verifyCRL :: CRL -> PKey -> IO VerifyStatus
verifyCRL verifies a signature of revocation list with an issuer public key.
printCRL :: CRL -> IO String
printCRL translates a revocation list into human-readable format.
sortCRL :: CRL -> IO ()
sortCRL crl sorts the certificates in the revocation list.
Accessors
getVersion :: CRL -> IO Int
getVersion crl returns the version number of revocation list.
setVersion :: CRL -> Int -> IO ()
setVersion crl ver updates the version number of revocation list.
getLastUpdate :: CRL -> IO UTCTime
getLastUpdate crl returns the time when the revocation list has last been updated.
setLastUpdate :: CRL -> UTCTime -> IO ()
setLastUpdate crl utc updates the time when the revocation list has last been updated.
getNextUpdate :: CRL -> IO UTCTime
getNextUpdate crl returns the time when the revocation list will next be updated.
setNextUpdate :: CRL -> UTCTime -> IO ()
setNextUpdate crl utc updates the time when the revocation list will next be updated.
getIssuerName :: CRL -> Bool -> IO [(String, String)]
getIssuerName crl wantLongName returns the issuer name of revocation list. See getIssuerName of OpenSSL.X509.
setIssuerName :: CRL -> [(String, String)] -> IO ()
setIssuerName crl name updates the issuer name of revocation list. See setIssuerName of OpenSSL.X509.
getRevokedList :: CRL -> IO [RevokedCertificate]
getRevokedList crl returns the list of revoked certificates.
addRevoked :: CRL -> RevokedCertificate -> IO ()
addRevoked crl revoked add the certificate to the revocation list.
Produced by Haddock version 0.8