summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/doc/ssl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the libssl/src directorybeck2016-09-0383-10220/+0
|
* http -> https for a few more IETF URLs in comments or man pagesmmcc2016-03-101-3/+3
|
* Document that the ssl free() functions are NULL safe. OK mmcc@millert2015-12-303-6/+21
|
* fix references to lhash(3);jmc2015-11-151-7/+8
|
* add missing functions to NAME, or otherwise correct the mlinkjmc2015-11-115-16/+21
| | | | | | entry for them; feedback/ok schwarze
* delete bogus trailing .Ns from SYNOPSIS .Ft macrosschwarze2015-09-141-6/+6
|
* fix formatting by adding the required quotes to .Fa in the SYNOPSISschwarze2015-09-142-11/+11
|
* Remove useless quoting from .Fo and .Fn function names, to preventschwarze2015-09-141-3/+3
| | | | | | development of a cargo cult in case people look at existing files for examples. This achieves a consistent .Fo and .Fn quoting style across the whole tree.
* delete empty SYNOPSIS sectionschwarze2015-09-101-3/+2
|
* an TLS -> a TLS; from thanos tsouanasjmc2015-07-242-6/+6
|
* Remove SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER workaround.doug2015-07-181-2/+4
| | | | | | This was a hack to work around problems on IE 6 with SSLv3. ok miod@ bcook@
* Remove support for the SSL_OP_TLS_D5_BUG compat hack from SSLeay.doug2015-07-181-3/+5
| | | | | | | | This is a 17 year old workaround from SSLeay 0.9.0b. It was for clients that send RSA client key exchange in TLS using SSLv3 format (no length prefix). ok jsing@
* Remove compat hack that disabled ECDHE-ECDSA on OS X.doug2015-07-171-3/+4
| | | | | | | | | For a few old releases, ECDHE-ECDSA was broken on OS X. This option cannot differentiate between working and broken OS X so it disabled ECDHE-ECDSA support on all OS X >= 10.6. 10.8-10.8.3 were the faulty releases but these are no longer relevant. Tested on OS X 10.10 by jsing. ok jsing@
* Remove workaround for TLS padding bug from SSLeay days.doug2015-07-171-3/+5
| | | | | | | | | OpenSSL doesn't remember which clients were impacted and the functionality has been broken in their stable releases for 2 years. Based on OpenSSL commit a8e4ac6a2fe67c19672ecf0c6aeafa15801ce3a5. ok jsing@
* Remove Microsoft Server Gated Crypto.doug2015-06-183-31/+9
| | | | | | | | | Another relic due to the old US crypto policy. From OpenSSL commit 63eab8a620944a990ab3985620966ccd9f48d681 and 95275599399e277e71d064790a1f828a99fc661a. ok jsing@ miod@
* Remove ancient SSL_OP_NETSCAPE_CA_DN_BUG from SSLeay days.doug2015-06-151-5/+4
| | | | | | | This commit matches the OpenSSL removal in commit 3c33c6f6b10864355553961e638514a6d1bb00f6. ok deraadt@
* Remove ancient compat hack SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG.doug2015-06-151-2/+4
| | | | | This was imported into OpenSSL from SSLeay. It was recently deleted in OpenSSL commit 7a4dadc3a6a487db92619622b820eb4f7be512c9
* Remove 1997's compat hack SSL_OP_SSLEAY_080_CLIENT_DH_BUG.doug2015-06-151-2/+4
| | | | This is a hack for an old version of SSLeay which predates OpenSSL.
* Update SSL_OP_* to remove ancient hacks that are no longer enabled.doug2015-06-151-13/+11
|
* Rename SSL_CTX_use_certificate_chain() to SSL_CTX_use_certificate_chain_mem().reyk2015-02-061-5/+5
| | | | | As discussed with beck@ jsing@ and others OK beck@
* add missing .Fn macros in the SYNOPSIS; found with mandoc.db(5)schwarze2014-12-041-5/+5
|
* add some openbsd tags, and a first pass at cleanup;jmc2014-12-0283-105/+354
|
* Remove non-portable use of .Pf that doesn't work with groff;schwarze2014-11-301-8/+4
| | | | found because the groff_mdoc(7) macros warn about it.
* Fix incorrect escape.bentley2014-11-221-2/+2
|
* Convert libssl manpages from pod to mdoc(7).bentley2014-10-12166-7737/+9969
| | | | | | libcrypto has not been started yet. ok schwarze@ miod@
* Add a new API function SSL_CTX_use_certificate_chain() that allows toreyk2014-09-281-4/+6
| | | | | | | | | | | read the PEM-encoded certificate chain from memory instead of a file. This idea is derived from an older implementation in relayd that was needed to use the function with a privep'ed process in a chroot. Now it is time to get it into LibreSSL to make the API more privsep- friendly and to make it available for other programs and the ressl library. ok jsing@ miod@
* Document SSL_OP_TLSEXT_PADDING.jsing2014-09-211-0/+6
| | | | From OpenSSL.
* Merge a patch that i successfully pushed to OpenSSL,schwarze2014-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | original OpenSSL commit message follows: Fixed as shown; to be released post-1.0.2 commit bebbb11d132cc149f7713d6693703f8bfae10072 Author: Ingo Schwarze <schwarze@usta.de> Date: Sat Jan 18 11:46:25 2014 +0100 RT3239: Extra comma in NAME lines of two manpages In two OpenSSL manual pages, in the NAME section, the last word of the name list is followed by a stray trailing comma. While this may seem minor, it is worth fixing because it may confuse some makewhatis(8) implementations. While here, also add the missing word "size" to the one line description in SSL_CTX_set_max_cert_list(3). Reviewed by: Dr Stephen Henson <shenson@drh-consultancy.co.uk>
* Huge documentation update for libcrypto and libssl, mostly from Matt Caswell,miod2014-07-1118-49/+79
| | | | | | Jeff Trawick, Jean-Paul Calderone, Michal Bozon, Jeffrey Walton and Rich Salz, via OpenSSL trunk (with some parts not applying to us, such as SSLv2 support, at least partially removed).
* Document SSL_CIPHER_description() will now use asprintf if passed a NULLmiod2014-07-081-5/+5
| | | | buffer.
* Remove a leading whitespace.jim2014-05-041-1/+1
| | | | ok jmc@
* Add missing SEE ALSO section header.jim2014-05-042-0/+4
| | | | ok jmc@
* Improve line wrapping for lines exceeding 80 chars.jim2014-05-0443-58/+115
| | | | ok jmc@
* Remove trailing whitespace.jim2014-05-0422-36/+36
| | | | ok jmc@
* Unifdef -UPKCS1_CHECK and remove SSL_OP_PKCS1_CHECK_[12], this is leftovermiod2014-04-231-8/+0
| | | | | | | | ``debug'' code from a 15+ years old bugfix and the SSL_OP_PKCS1_CHECK_* constants have had a value of zero since ages. No production code should use them. ok beck@
* Remove unused/never installed libssl tools and docs and references to themafresh12014-04-201-2/+15
| | | | Sure deraadt
* Add SSL_OP_NO_TLSv1_1 and SSL_OP_NO_TLSv1_2guenther2014-04-191-4/+13
| | | | Document that SSL_OP_NO_SSLv2 is a no-op now
* Finish zapping SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION usage; only keepguenther2014-04-181-14/+8
| | | | | | | the #define for compat, but document that it's a no-op now. Also, neuter the -legacy_renegotiation option to "openssl s_{client,server}" ok beck@
* Sync the list of man pages for libcrypto, explicity rename conflictingmpi2014-04-161-0/+322
| | | | | | | pages instead of doing it in the Makefiles and move a libssl page where it belongs. ok miod@
* Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery.miod2014-04-139-31/+32
|
* prepare manpages for new perl.espie2014-03-1817-40/+44
| | | | | | | Note that I missed two of these in the diff shown initially, thx to the atrocious Makefile rule... okay millert@, sthen@, basically
* resolve conflictsdjm2012-10-131-0/+5
|
* OpenSSL 1.0.0f: mergedjm2012-01-051-4/+10
|
* openssl-1.0.0e: resolve conflictsdjm2011-11-032-13/+2
|
* resolve conflicts, fix local changesdjm2010-10-017-30/+180
|
* This commit was generated by cvs2git to track changes on a CVS vendordjm2010-10-013-0/+246
|\ | | | | branch.
| * import OpenSSL-1.0.0adjm2010-10-013-0/+246
|
* update to openssl-0.9.8i; tested by several, especially krw@djm2009-01-051-0/+6
|
* resolve conflictsdjm2008-09-064-2/+23
|
* resolve conflictsdjm2006-06-271-1/+1
|