aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ts/ts_conf.c
Commit message (Collapse)AuthorAgeFilesLines
* Added support for ESSCertIDv2Marek Klein2017-05-031-0/+25
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/771)
* Copyright consolidation 06/10Rich Salz2016-05-171-54/+5
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Remove #error from include files.Rich Salz2016-03-201-3/+1
| | | | | | | | Don't have #error statements in header files, but instead wrap the contents of that file in #ifndef OPENSSL_NO_xxx This means it is now always safe to include the header file. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Remove /* foo.c */ commentsRich Salz2016-01-261-1/+0
| | | | | | | | | | | | This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
* Add support for signer_digest option in TS.Dr. Stephen Henson2015-11-201-0/+25
| | | | | | Based on PR#2145 Reviewed-by: Matt Caswell <matt@openssl.org>
* Remove "noise" comments from TS files.Rich Salz2015-09-221-6/+2
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Set error code, no fprintf stderr, on errors.Rich Salz2015-06-041-5/+7
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Rename all static TS_xxx to ts_xxxRich Salz2015-06-041-23/+23
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Identify and move common internal libcrypto header filesRichard Levitte2015-05-141-1/+1
| | | | | | | | | | | | | There are header files in crypto/ that are used by a number of crypto/ submodules. Move those to crypto/include/internal and adapt the affected source code and Makefiles. The header files that got moved are: crypto/cryptolib.h crypto/md32_common.h Reviewed-by: Rich Salz <rsalz@openssl.org>
* Use p==NULL not !p (in if statements, mainly)Rich Salz2015-05-111-27/+34
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* free NULL cleanup 11Rich Salz2015-05-011-2/+1
| | | | | | | | | | | | | | | | | | | Don't check for NULL before calling free functions. This gets: ERR_STATE_free ENGINE_free DSO_free CMAC_CTX_free COMP_CTX_free CONF_free NCONF_free NCONF_free_data _CONF_free_data A sk_free use within OBJ_sigid_free TS_TST_INFO_free (rest of TS_ API was okay) Doc update for UI_free (all uses were fine) X509V3_conf_free X509V3_section_free X509V3_string_free Reviewed-by: Richard Levitte <levitte@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-383/+367
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Make no-engine work again.Dr. Stephen Henson2008-12-201-0/+6
|
* Fix a variety of warnings generated by some elevated compiler-fascism,Geoff Thorpe2008-03-161-0/+2
| | | | OPENSSL_NO_DEPRECATED, etc. Steve, please double-check the CMS stuff...
* RFC 3161 compliant time stamp request creation, response generationUlf Möller2006-02-121-0/+499
and response verification. Submitted by: Zoltan Glozik <zglozik@opentsa.org> Reviewed by: Ulf Moeller