Skip to content

Commit

Permalink
doc/luaossl.tex: Document new ssl:set*Store methods
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Mar 27, 2018
1 parent ab7ceef commit 220d94f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions doc/luaossl.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,24 @@ \section{Modules}

Clears the option flags of the SSL connection instance. See \fn{openssl.ssl.context:clearOptions}.

\subsubsection[\fn{ssl:setStore}]{\fn{ssl:setStore($store$)}}

Associate the \module{openssl.x509.store} object $store$ with $ssl$ for both verification and chain building. Replaces any existing stores.

\emph{Only supported since OpenSSL 1.0.2.}

\subsubsection[\fn{ssl:setChainStore}]{\fn{ssl:setChainStore($store$)}}

Associate the \module{openssl.x509.store} object $store$ with $ssl$ for chain building. Replaces any existing store.

\emph{Only supported since OpenSSL 1.0.2.}

\subsubsection[\fn{ssl:setVerifyStore}]{\fn{ssl:setVerifyStore($store$)}}

Associate the \module{openssl.x509.store} object $store$ with $ssl$ for verification. Replaces any existing store.

\emph{Only supported since OpenSSL 1.0.2.}

\subsubsection[\fn{ssl:setVerify}]{\fn{ssl:setVerify([$mode$][, $depth$])}}

Sets the verification mode flags and maximum validation chain depth.
Expand Down

0 comments on commit 220d94f

Please sign in to comment.