summaryrefslogtreecommitdiffstats
path: root/apps
AgeCommit message (Collapse)Author
2008-11-01size_tification.Ben Laurie
2008-10-27Fix warnings and various issues.Dr. Stephen Henson
C++ style comments. Signed/unsigned warning in apps.c Missing targets in jpake/Makefile
2008-10-26Add JPAKE.Ben Laurie
2008-10-22Add support for -crlnumber option in crl utility.Dr. Stephen Henson
2008-10-22Allow detection of input EOF in quiet mode by adding -no_ign_eof optionLutz Jänicke
to s_client application. PR: #1761 Submitted by: David Woodhouse <dwmw2@infradead.org>
2008-10-20Add missing "-d" to option list of openssl version.Lutz Jänicke
Submitted by: Alex Chen <alex_chen@filemaker.com>
2008-10-19Fix Warning...Dr. Stephen Henson
2008-10-14Add XMPP STARTTLS support.Ben Laurie
2008-10-12Type-checked (and modern C compliant) OBJ_bsearch.Ben Laurie
2008-10-07Experimental new date handling routines. These fix issues with X509_time_adj()Dr. Stephen Henson
and should avoid any OS date limitations such as the year 2038 bug.
2008-09-15From branch OpenSSL_0_9_8-stable: Allow soft-loading engines.Bodo Möller
Also, fix CHANGES (consistency with stable branch).
2008-09-03Make no-tlsext compile.Dr. Stephen Henson
2008-09-01Initial support for delta CRLs. If "use deltas" flag is set attempt to findDr. Stephen Henson
a delta CRL in addition to a full CRL. Check and search delta in addition to the base.
2008-08-13Initial support for CRL path validation. This supports distinct certificateDr. Stephen Henson
and CRL signing keys.
2008-08-12Support for policy mappings extension.Dr. Stephen Henson
Delete X509_POLICY_REF code. Fix handling of invalid policy extensions to return the correct error. Add command line option to inhibit policy mappings.
2008-08-06Remove the dual-callback scheme for numeric and pointer thread IDs,Geoff Thorpe
deprecate the original (numeric-only) scheme, and replace with the CRYPTO_THREADID object. This hides the platform-specifics and should reduce the possibility for programming errors (where failing to explicitly check both thread ID forms could create subtle, platform-specific bugs). Thanks to Bodo, for invaluable review and feedback.
2008-07-30Initial support for alternative CRL issuing certificates.Dr. Stephen Henson
Allow inibit any policy flag to be set in apps.
2008-07-27remove a doubled entry for '-binary' in the usage messageRalf S. Engelschall
2008-07-13X509 verification fixes.Dr. Stephen Henson
Ignore self issued certificates when checking path length constraints. Duplicate OIDs in policy tree in case they are allocated. Use anyPolicy from certificate cache and not current tree level.
2008-07-04Avoid warnings with -pedantic, specifically:Dr. Stephen Henson
Conversion between void * and function pointer. Value computed not used. Signed/unsigned argument.
2008-07-03Revert my earlier CRYPTO_THREADID commit, I will commit a reworkedGeoff Thorpe
version some time soon.
2008-06-26Update from stable branch.Dr. Stephen Henson
2008-06-04More type-checking.Ben Laurie
2008-06-03Add support for client cert engine setting in s_client app.Dr. Stephen Henson
Add appropriate #ifdefs round client cert functions in headers.
2008-06-02Avoid case in ca.c fix.Dr. Stephen Henson
2008-06-02Revert, doesn't fix warning :-(Dr. Stephen Henson
2008-06-02Avoid cast with wrapper function.Dr. Stephen Henson
2008-05-31Stop const mismatch warning.Dr. Stephen Henson
2008-05-31Stop warning about extra ';' outside of function.Dr. Stephen Henson
2008-05-31Stop const mismatch warning in VC++.Dr. Stephen Henson
2008-05-26LHASH revamp. make depend.Ben Laurie
2008-05-19Document "openssl s_server" -crl_check* optionsLutz Jänicke
Submitted by: Daniel Black <daniel.subs@internode.on.net>
2008-05-19Provide information about "openssl dgst" -hmac option.Lutz Jänicke
2008-05-19Typo. (From 0.9.8-stable/S. Henson)Lutz Jänicke
PR: 1672
2008-05-12Fix from stable branch.Dr. Stephen Henson
2008-05-01Use "cont" consistently in cms-examples.plDr. Stephen Henson
Add a -certsout option to output any certificates in a message. Add test for example 4.11
2008-04-17Fix incorrect return value in apps/apps.c:parse_yesno()Lutz Jänicke
PR: 1607 Submitted by: "Christophe Macé" <mace.christophe@gmail.com>
2008-04-17Correctly handle case of bad arguments supplied to rsautlLutz Jänicke
PR: 1659
2008-04-17Apply mingw patches as supplied by Roumen Petrov an Alon Bar-LevLutz Jänicke
PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>, "Alon Bar-Lev" <alon.barlev@gmail.com>
2008-04-11Revert argument swap change... oops CMS_uncompress() was consistent...Dr. Stephen Henson
2008-04-11Make CMS_uncompress() argument order consistent with other functions.Dr. Stephen Henson
2008-04-11Synchronise with Unix buildRichard Levitte
2008-04-10Add additional parameter to CMS_final() to handle detached content.Dr. Stephen Henson
2008-04-09Correct references to smime in cms app.Dr. Stephen Henson
2008-03-28Signed receipt generation code.Dr. Stephen Henson
2008-03-28Support for verification of signed receipts.Dr. Stephen Henson
2008-03-28There was a need to support thread ID types that couldn't be reliably castGeoff Thorpe
to 'unsigned long' (ie. odd platforms/compilers), so a pointer-typed version was added but it required portable code to check *both* modes to determine equality. This commit maintains the availability of both thread ID types, but deprecates the type-specific accessor APIs that invoke the callbacks - instead a single type-independent API is used. This simplifies software that calls into this interface, and should also make it less error-prone - as forgetting to call and compare *both* thread ID accessors could have led to hard-to-debug/infrequent bugs (that might only affect certain platforms or thread implementations). As the CHANGES note says, there were corresponding deprecations and replacements in the thread-related functions for BN_BLINDING and ERR too.
2008-03-26Add support for signed receipt request printout and generation.Dr. Stephen Henson
2008-03-26Signed Receipt Request utility functions and option on CMS utility toDr. Stephen Henson
print out receipt requests.
2008-03-24Add support for CMS structure printing in cms utility.Dr. Stephen Henson