HsOpenSSL-0.11.4.9: Partial OpenSSL binding for Haskell

Safe HaskellNone
LanguageHaskell2010

OpenSSL.X509.Store

Description

An interface to X.509 certificate store.

Synopsis

Documentation

data X509Store #

X509Store is an opaque object that represents X.509 certificate store. The certificate store is usually used for chain verification.

newX509Store :: IO X509Store #

newX509Store creates an empty X.509 certificate store.

addCertToStore :: X509Store -> X509 -> IO () #

addCertToStore store cert adds a certificate to store.

addCRLToStore :: X509Store -> CRL -> IO () #

addCRLToStore store crl adds a revocation list to store.