diff options
author | william <william+macosx@25thandclement.com> | 2015-06-02 18:32:19 -0700 |
---|---|---|
committer | william <william+macosx@25thandclement.com> | 2015-06-02 18:32:19 -0700 |
commit | fde13cd3149f1e5d040a5e248bea820492b7cece (patch) | |
tree | deefe8922c6ae4775d2bb97c5d9c77ffaacc4321 /doc | |
parent | 958cbcd2d064daabea283d69aa6ba01e5358429a (diff) | |
download | luaossl-fde13cd3149f1e5d040a5e248bea820492b7cece.tar.gz luaossl-fde13cd3149f1e5d040a5e248bea820492b7cece.tar.bz2 luaossl-fde13cd3149f1e5d040a5e248bea820492b7cece.zip |
document DTLS protocol identifiers for openssl.ssl.context.new routine
Diffstat (limited to 'doc')
-rw-r--r-- | doc/luaossl.pdf | bin | 284349 -> 284248 bytes | |||
-rw-r--r-- | doc/luaossl.tex | 17 |
2 files changed, 10 insertions, 7 deletions
diff --git a/doc/luaossl.pdf b/doc/luaossl.pdf Binary files differindex f493d99..e310cbe 100644 --- a/doc/luaossl.pdf +++ b/doc/luaossl.pdf diff --git a/doc/luaossl.tex b/doc/luaossl.tex index b52026d..c8917d7 100644 --- a/doc/luaossl.tex +++ b/doc/luaossl.tex @@ -694,22 +694,25 @@ Returns a new context object. $protocol$ is an optional string identifier select \begin{ctabular}{ c | p{14cm} } \multicolumn{2}{c}{$protocol$ identifiers}\\\hline\hline name & \href{https://www.openssl.org/docs/ssl/SSL_CTX_new.html}{description} \\\hline -TLS & Supports TLS 1.0 and above. Internally uses \fn{SSLv23\_method} and disables SSLv2 and +TLS & Supports TLS 1.0 \emph{and above}. Internally uses \fn{SSLv23\_method} and disables SSLv2 and SSLv3 using \texttt{SSL\_OP\_NO\_SSLv2} and \texttt{SSL\_OP\_NO\_SSLv3}.\\ -SSL & Supports SSL 3.0 and above. Internally uses \fn{SSLv23\_method} and disables SSLv2 using \texttt{SSL\_OP\_NO\_SSLv2}.\\ +SSL & Supports SSL 3.0 \emph{and above}. Internally uses \fn{SSLv23\_method} and disables SSLv2 using \texttt{SSL\_OP\_NO\_SSLv2}.\\ SSLv23 & A catchall for all versions of SSL/TLS supported by OpenSSL. Individual versions can be disabled using \method{context:setOptions}. Internally uses \fn{SSLv23\_method}.\\ -TLSv1\_2 & Supports \emph{only} TLS 1.2; \emph{not} anything lower \emph{or} higher. Internally uses \fn{TLSv1\_2\_method}.\\ +TLSv1\_2 & Supports \emph{only} TLS 1.2. Internally uses \fn{TLSv1\_2\_method}.\\ -TLSv1\_1 & Supports \emph{only} TLS 1.1; \emph{not} anything lower \emph{or} higher. Internally uses \fn{TLSv1\_1\_method}.\\ +TLSv1\_1 & Supports \emph{only} TLS 1.1. Internally uses \fn{TLSv1\_1\_method}.\\ -TLSv1 & Supports \emph{only} TLS 1.0; \emph{not} anything lower \emph{or} higher. Internally uses \fn{TLSv1\_method}.\\ +TLSv1 & Supports \emph{only} TLS 1.0. Internally uses \fn{TLSv1\_method}.\\ -SSLv3 & Supports \emph{only} SSL 3.0; \emph{not} anything lower \emph{or} higher. Internally uses \fn{SSLv3\_method}.\\ +SSLv3 & Supports \emph{only} SSL 3.0. Internally uses \fn{SSLv3\_method}.\\ -SSLv2 & Supports \emph{only} SSL 2.0; \emph{not} anything lower \emph{or} higher. Internally uses \fn{SSLv2\_method}. +SSLv2 & Supports \emph{only} SSL 2.0. Internally uses \fn{SSLv2\_method}. \\ +DTLS & Supports DTLS 1.0 \emph{and above}. Internally uses \fn{DTLS\_method}. \\ +DTLSv1 & Supports \emph{only} DTLS 1.0. Internally uses \fn{DTLSv1\_method}. \\ +DTLSv1\_2 & Supports \emph{only} DTLS 1.2. Internally uses \fn{DTLSv1\_2\_method}. \end{ctabular} |