summaryrefslogtreecommitdiffstats
path: root/doc/apps
AgeCommit message (Collapse)Author
2014-08-15Add support for Camellia HMAC-Based cipher suites from RFC6367Hubert Kario
While RFC6367 focuses on Camellia-GCM cipher suites, it also adds a few cipher suites that use SHA-2 based HMAC that can be very easily added. Tested against gnutls 3.3.5 PR#3443 Reviewed-by: Tim Hudson <tjh@openssl.org>
2014-08-12PR 2580: dgst missing current SHA algorithmsNick Lewis
Update the dgst.pod page to include SHA224...512 algorithms. Update apps/progs.pl to add them to the digest command table. Reviewed-by: Tim Hudson <tjh@cryptosoft.com>
2014-08-12RT2609: Typo in EXAMPLE section of req.podNick Urbanik
The x509_extensions should be req_extensions in the config example in req.pod Reviewed-by: tjh@cryptsoft.com
2014-07-15Clarify -Verify and PSK.Dr. Stephen Henson
PR#3452
2014-07-14document -nextprotoneg option in man pagesHubert Kario
Add description of the option to advertise support of Next Protocol Negotiation extension (-nextprotoneg) to man pages of s_client and s_server. PR#3444
2014-07-06Document certificate status request options.Dr. Stephen Henson
2014-07-04typoDr. Stephen Henson
(cherry picked from commit 2cfbec1caea8f9567bdff85d33d22481f2afb40a)
2014-07-04Remove all RFC5878 code.Dr. Stephen Henson
Remove RFC5878 code. It is no longer needed for CT and has numerous bugs
2014-07-02Close a whole bunch of documentation-related tickets:Rich Salz
298 424 656 882 939 1630 1807 2263 2294 2311 2424 2623 2637 2686 2697 2921 2922 2940 3055 3112 3156 3177 3277
2014-07-01Fix RT 2567; typo in pkeyutl page.Rich Salz
2014-07-01Fix RT 2430; typo's in ca.podRich Salz
2014-06-19Fix minor typosMatt Caswell
2014-06-19add references to verify(1) man page for args_verify() optionsHubert Kario
cms, ocsp, s_client, s_server and smime tools also use args_verify() for parsing options, that makes them most of the same options verify tool does. Add those options to man pages and reference their explanation in the verify man page.
2014-06-19sort the options in verify man page alphabeticallyHubert Kario
just making sure the options are listed in the alphabetical order both in SYNOPSIS and DESCRIPTION, no text changes
2014-06-19add description of missing options to verify man pageHubert Kario
The options related to policy used for verification, verification of subject names in certificate and certificate chain handling were missing in the verify(1) man page. This fixes this issue.
2014-06-19smime man page: add missing options in SYNOPSISHubert Kario
-CAfile and -CApath is documented in OPTIONS but is missing in SYNOPSIS, add them there
2014-06-19Document -trusted_first option in man pages and help.Hubert Kario
Add -trusted_first description to help messages and man pages of tools that deal with certificate verification.
2014-06-17Added documentation for -iter for PKCS#8rfkrocktk
2014-06-10add ECC strings to ciphers(1), point out difference between DH and ECDHHubert Kario
* Make a clear distinction between DH and ECDH key exchange. * Group all key exchange cipher suite identifiers, first DH then ECDH * add descriptions for all supported *DH* identifiers * add ECDSA authentication descriptions * add example showing how to disable all suites that offer no authentication or encryption
2014-05-30add description of -attime to man pageHubert Kario
the verify app man page didn't describe the usage of attime option even though it was listed as a valid option in the -help message. This patch fixes this omission.
2014-05-30add description of -no_ecdhe option to s_server man pageHubert Kario
While the -help message references this option, the man page doesn't mention the -no_ecdhe option. This patch fixes this omission.
2014-05-26Changed -strictpem to use PEM_read_bioMatt Caswell
2014-05-26Added -strictpem parameter to enable processing of PEM files with data prior ↵Matt Caswell
to the BEGIN marker
2014-05-24Add an NSS output format to sess_id to export to export the session id and ↵Martin Kaiser
the master key in NSS keylog format. PR#3352
2014-05-22Fixed minor copy&paste error, and stray space causing rendering problemMatt Caswell
2014-05-21Change default cipher in smime app to des3.Dr. Stephen Henson
PR#3357
2014-05-15Moved note about lack of support for AEAD modes out of BUGS section to ↵Matt Caswell
SUPPORTED CIPHERS section (bug has been fixed, but still no support for AEAD)
2014-05-14Fix grammar error in verify pod. PR#3355Jeffrey Walton
2014-05-14Add information to BUGS section of enc documentation. PR#3354Jeffrey Walton
2014-05-12Correct example.Dr. Stephen Henson
2014-05-10Fixed CRLF in fileMatt Caswell
2014-04-26Fix version documentation.mancha
Specify -f is for compilation flags. Add -d to synopsis section. Closes #77.
2014-04-16Document -debug_decrypt option.Dr. Stephen Henson
2014-04-07Document -verify_return_error option.Dr. Stephen Henson
2014-04-03Document new crl option.Dr. Stephen Henson
2014-03-28Add initial security framework docs.Dr. Stephen Henson
2014-03-01PKCS#8 support for alternative PRFs.Dr. Stephen Henson
Add option to set an alternative to the default hmacWithSHA1 PRF for PKCS#8 private key encryptions. This is used automatically by PKCS8_encrypt if the nid specified is a PRF. Add option to pkcs8 utility. Update docs. (cherry picked from commit b60272b01fcb4f69201b3e1659b4f7e9e9298dfb)
2014-02-14Fix various spelling errorsScott Schaefer
2014-02-14Document pkcs12 -password behaviorScott Schaefer
apps/pkcs12.c accepts -password as an argument. The document author almost certainly meant to write "-password, -passin". However, that is not correct, either. Actually the code treats -password as equivalent to -passin, EXCEPT when -export is also specified, in which case -password as equivalent to -passout.
2014-02-13Add suppot for ASCII with CRLF canonicalisation.Dr. Stephen Henson
2014-01-09update remaining documentation to move from EDH to DHEDaniel Kahn Gillmor
change documentation and comments to indicate that we prefer the standard "DHE" naming scheme everywhere over the older "EDH"
2014-01-09use SSL_kDHE throughout instead of SSL_kEDHDaniel Kahn Gillmor
DHE is the standard term used by the RFCs and by other TLS implementations. It's useful to have the internal variables use the standard terminology. This patch leaves a synonym SSL_kEDH in place, though, so that older code can still be built against it, since that has been the traditional API. SSL_kEDH should probably be deprecated at some point, though.
2013-11-09Document RSAPublicKey_{in,out} options.Dr. Stephen Henson
2013-10-22POD: Fix item numberingLubomir Rintel
Newer pod2man considers =item [1-9] part of a numbered list, while =item 0 starts an unnumbered list. Add a zero effect formatting mark to override this. doc/apps/smime.pod around line 315: Expected text after =item, not a number ... PR#3146
2013-09-06Add callbacks supporting generation and retrieval of supplemental data ↵Scott Deboy
entries, facilitating RFC 5878 (TLS auth extensions) Removed prior audit proof logic - audit proof support was implemented using the generic TLS extension API Tests exercising the new supplemental data registration and callback api can be found in ssltest.c. Implemented changes to s_server and s_client to exercise supplemental data callbacks via the -auth argument, as well as additional flags to exercise supplemental data being sent only during renegotiation.
2013-09-05misspellings fixes by https://github.com/vlajos/misspell_fixerVeres Lajos
2013-09-05Add an "-xmpphost" option to s_clientCarlos Alberto Lopez Perez
* Many XMPP servers are configured with multiple domains (virtual hosts) * In order to establish successfully the TLS connection you have to specify which virtual host you are trying to connect. * Test this, for example with :: * Fail: openssl s_client -connect talk.google.com:5222 -starttls xmpp * Works: openssl s_client -connect talk.google.com:5222 -starttls xmpp -xmpphost gmail.com
2013-09-05Add "xmpp" to the list of supported starttls protocols on s_client manpageCarlos Alberto Lopez Perez
2013-08-21Document -force_pubkey option.Dr. Stephen Henson
2013-08-05Update cms docs.Dr. Stephen Henson