aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cmp.c
Commit message (Expand)AuthorAgeFilesLines
* Update copyright yearMatt Caswell2022-05-031-1/+1
* apps/cmp.c: fix coding style nits reported by check-format.plDr. David von Oheimb2022-01-071-14/+16
* Fix typosDimitris Apostolou2022-01-051-1/+1
* CMP mock server: add -ref_cert option and corresponding ossl_cmp_mock_srv_set...Dr. David von Oheimb2022-01-041-3/+20
* HTTP client: Work around HTTPS proxy use bug due to callback design flawDr. David von Oheimb2022-01-041-1/+4
* APPS/cmp: improve diagnostics for presence of TLS optionsDr. David von Oheimb2021-12-301-17/+27
* OSSL_CMP_CTX: rename get/set function for trustedStoreDr. David von Oheimb2021-12-301-2/+2
* add OSSL_STACK_OF_X509_free() for commonly used patternDr. David von Oheimb2021-12-211-4/+4
* APPS/cmp: Fix logic and doc of mutually exclusive -server/-use_mock_srv/-port...Dr. David von Oheimb2021-12-151-58/+80
* APPS/cmp: Simplify read_write_req_resp() - 'req' arg must not be NULL anywayDr. David von Oheimb2021-12-131-2/+1
* APPS/cmp: Fix use of OPENSSL_NO_SOCK: options like -server do not make sense ...Dr. David von Oheimb2021-12-091-31/+96
* APPS/cmp: fix -rspin option such that it works again without -reqinDr. David von Oheimb2021-12-091-1/+2
* APPS: Improve diagnostics on missing/extra args and unknown cipher/digestDr. David von Oheimb2021-12-071-3/+1
* Fix HTTP server port output and allow dynamic verbosity settingDr. David von Oheimb2021-11-221-2/+2
* Add and use HAS_CASE_PREFIX(), CHECK_AND_SKIP_CASE_PREFIX(), and HAS_CASE_SUF...Dr. David von Oheimb2021-11-171-2/+1
* Fix verbosity of CMP client diagnosticsDr. David von Oheimb2021-11-171-9/+20
* APPS/cmp: make the -sans option support email addresses (type rfc822Name)Dr. David von Oheimb2021-11-081-1/+2
* cmp.c: Avoid dereference with negative index and use memcpyTomas Mraz2021-10-251-9/+18
* APPS/cmp.c: Move warning on overlong section name to make it effective againDr. David von Oheimb2021-09-171-4/+4
* Fix CMP app TLS connection not respecting vpm options like -crl_checkDr. David von Oheimb2021-08-061-5/+2
* HTTP client: fix use of OSSL_HTTP_adapt_proxy(), which is needed also in cmp.cDr. David von Oheimb2021-06-161-6/+4
* Use the new ASN.1 libctx aware capabilities in CMPMatt Caswell2021-06-051-1/+1
* apps: remove TODOsPauli2021-06-021-6/+0
* apps/cmp.c: Move CMP server code portion to separate functionDr. David von Oheimb2021-05-201-71/+79
* Move ossl_sleep() to e_os.h and use it in appsDr. David von Oheimb2021-05-181-1/+1
* http_client.c: Rename internal fields and functions for consistencyDr. David von Oheimb2021-05-141-0/+1
* HTTP: Implement persistent connections (keep-alive)Dr. David von Oheimb2021-05-141-7/+33
* HTTP test server: Improve connection management and loggingDr. David von Oheimb2021-05-141-10/+22
* Make the -inform option to be respected if possibleTomas Mraz2021-05-061-3/+3
* APPS: Replace 'OPT_ERR = -1, OPT_EOF = 0, OPT_HELP' by OPT_COMMON macroDr. David von Oheimb2021-05-051-1/+1
* APPS: Slightly extend and improve documentation of the opt_ APIDr. David von Oheimb2021-05-051-2/+2
* runchecker: fix no-sock build by conditioning clean up on the NO_SOCK symbol.Pauli2021-04-291-0/+2
* APPS: Improve diagnostics for string options and options expecting int >= 0Dr. David von Oheimb2021-04-241-106/+110
* apps/cmp.c and APP_HTTP_TLS_INFO: Fix use-after-free and add proper free() fu...Dr. David von Oheimb2021-04-221-9/+1
* apps/cmp.c: Fix double free on OSSL_CMP_CTX_set1_p10CSR() failureDr. David von Oheimb2021-04-211-10/+7
* Avoid more MSVC-specific C runtime library functionsTanzinul Islam2021-04-191-1/+1
* apps/cmp.c: Fix TLS hostname checking in case -server provides more than host...Dr. David von Oheimb2021-04-171-10/+10
* apps/cmp: Add generic random state options, e.g., for nonce generationDr. David von Oheimb2021-04-141-9/+18
* APPS and TEST: Make sure prog name is set for usage outputDr. David von Oheimb2021-04-141-1/+1
* APPS: make apps strict on app_RAND_load() and app_RAND_write() failureDr. David von Oheimb2021-04-141-0/+2
* Remove unnecessary setting SSL_MODE_AUTO_RETRYNan Xiao2021-04-071-2/+0
* apps/ts.c: Allow -untrusted arg to refer to multiple sourcesDr. David von Oheimb2021-03-131-163/+11
* openssl-cmp.pod.in and apps/cmp.c: Various minor do improvementsDr. David von Oheimb2021-03-111-8/+10
* CMP: On NULL-DN subject or issuer input omit field in cert templateDr. David von Oheimb2021-03-021-41/+76
* OSSL_HTTP_parse_url(): Handle any userinfo, query, and fragment componentsDr. David von Oheimb2021-03-011-1/+2
* CMP: Fix total_timeout behavior; small doc and diagnostic improvementsDr. David von Oheimb2021-02-191-13/+18
* apps/cmp.c: Improve initialization of ext_ctx structure w.r.t. CSRDr. David von Oheimb2021-02-171-26/+28
* apps/cmp.c: check and exit on engine load errorDr. David von Oheimb2021-02-041-1/+6
* Update copyright yearRichard Levitte2021-01-281-1/+1
* CMP: Allow PKCS#10 input also for ir, cr, kur, and rr messagesDr. David von Oheimb2021-01-211-29/+38