x509-store-1.6.9: X.509 collection accessing and storing methods
Safe HaskellNone
LanguageHaskell2010

Data.X509.CertificateStore

Contents

Synopsis

Documentation

makeCertificateStore :: [SignedCertificate] -> CertificateStore Source #

Create a certificate store out of a list of X509 certificate

readCertificateStore :: FilePath -> IO (Maybe CertificateStore) Source #

Create certificate store by reading certificates from file or directory

This function can be used to read multiple certificates from either single file (multiple PEM formatted certificates concanated) or directory (one certificate per file, file names are hashes from certificate).

Queries

findCertificate :: DistinguishedName -> CertificateStore -> Maybe SignedCertificate Source #

Find a certificate using the subject distinguished name

listCertificates :: CertificateStore -> [SignedCertificate] Source #

List all certificates in a store