Loading apps/ocsp.c +11 −0 Original line number Diff line number Diff line Loading @@ -55,6 +55,7 @@ * Hudson (tjh@cryptsoft.com). * */ #ifndef OPENSSL_NO_OCSP #include <stdio.h> #include <string.h> Loading Loading @@ -722,7 +723,12 @@ int MAIN(int argc, char **argv) } else if (host) { #ifndef OPENSSL_NO_SOCK cbio = BIO_new_connect(host); #else BIO_printf(bio_err, "Error creating connect BIO - sockets not supported.\n"); goto end; #endif if (!cbio) { BIO_printf(bio_err, "Error creating connect BIO\n"); Loading Loading @@ -1139,7 +1145,11 @@ static BIO *init_responder(char *port) bufbio = BIO_new(BIO_f_buffer()); if (!bufbio) goto err; #ifndef OPENSSL_NO_SOCK acbio = BIO_new_accept(port); #else BIO_printf(bio_err, "Error setting up accept BIO - sockets not supported.\n"); #endif if (!acbio) goto err; BIO_set_accept_bios(acbio, bufbio); Loading Loading @@ -1226,3 +1236,4 @@ static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp) return 1; } #endif apps/progs.h +2 −0 Original line number Diff line number Diff line Loading @@ -102,7 +102,9 @@ FUNCTION functions[] = { #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3)) {FUNC_TYPE_GENERAL,"s_client",s_client_main}, #endif #ifndef OPENSSL_NO_SPEED {FUNC_TYPE_GENERAL,"speed",speed_main}, #endif #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3)) {FUNC_TYPE_GENERAL,"s_time",s_time_main}, #endif Loading apps/speed.c +3 −0 Original line number Diff line number Diff line Loading @@ -71,6 +71,8 @@ /* most of this code has been pilfered from my libdes speed.c program */ #ifndef OPENSSL_NO_SPEED #undef SECONDS #define SECONDS 3 #define RSA_SECONDS 10 Loading Loading @@ -2579,3 +2581,4 @@ static int do_multi(int multi) return 1; } #endif #endif crypto/x509v3/ext_dat.h +6 −0 Original line number Diff line number Diff line Loading @@ -90,17 +90,23 @@ static X509V3_EXT_METHOD *standard_exts[] = { &v3_crld, &v3_ext_ku, &v3_crl_reason, #ifndef OPENSSL_NO_OCSP &v3_crl_invdate, #endif &v3_sxnet, &v3_info, #ifndef OPENSSL_NO_OCSP &v3_ocsp_nonce, &v3_ocsp_crlid, &v3_ocsp_accresp, &v3_ocsp_nocheck, &v3_ocsp_acutoff, &v3_ocsp_serviceloc, #endif &v3_sinfo, #ifndef OPENSSL_NO_OCSP &v3_crl_hold #endif }; /* Number of standard extensions */ Loading crypto/x509v3/v3_ocsp.c +3 −0 Original line number Diff line number Diff line Loading @@ -56,6 +56,8 @@ * */ #ifndef OPENSSL_NO_OCSP #include <stdio.h> #include "cryptlib.h" #include <openssl/conf.h> Loading Loading @@ -270,3 +272,4 @@ static int i2r_ocsp_serviceloc(X509V3_EXT_METHOD *method, void *in, BIO *bp, int err: return 0; } #endif Loading
apps/ocsp.c +11 −0 Original line number Diff line number Diff line Loading @@ -55,6 +55,7 @@ * Hudson (tjh@cryptsoft.com). * */ #ifndef OPENSSL_NO_OCSP #include <stdio.h> #include <string.h> Loading Loading @@ -722,7 +723,12 @@ int MAIN(int argc, char **argv) } else if (host) { #ifndef OPENSSL_NO_SOCK cbio = BIO_new_connect(host); #else BIO_printf(bio_err, "Error creating connect BIO - sockets not supported.\n"); goto end; #endif if (!cbio) { BIO_printf(bio_err, "Error creating connect BIO\n"); Loading Loading @@ -1139,7 +1145,11 @@ static BIO *init_responder(char *port) bufbio = BIO_new(BIO_f_buffer()); if (!bufbio) goto err; #ifndef OPENSSL_NO_SOCK acbio = BIO_new_accept(port); #else BIO_printf(bio_err, "Error setting up accept BIO - sockets not supported.\n"); #endif if (!acbio) goto err; BIO_set_accept_bios(acbio, bufbio); Loading Loading @@ -1226,3 +1236,4 @@ static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp) return 1; } #endif
apps/progs.h +2 −0 Original line number Diff line number Diff line Loading @@ -102,7 +102,9 @@ FUNCTION functions[] = { #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3)) {FUNC_TYPE_GENERAL,"s_client",s_client_main}, #endif #ifndef OPENSSL_NO_SPEED {FUNC_TYPE_GENERAL,"speed",speed_main}, #endif #if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3)) {FUNC_TYPE_GENERAL,"s_time",s_time_main}, #endif Loading
apps/speed.c +3 −0 Original line number Diff line number Diff line Loading @@ -71,6 +71,8 @@ /* most of this code has been pilfered from my libdes speed.c program */ #ifndef OPENSSL_NO_SPEED #undef SECONDS #define SECONDS 3 #define RSA_SECONDS 10 Loading Loading @@ -2579,3 +2581,4 @@ static int do_multi(int multi) return 1; } #endif #endif
crypto/x509v3/ext_dat.h +6 −0 Original line number Diff line number Diff line Loading @@ -90,17 +90,23 @@ static X509V3_EXT_METHOD *standard_exts[] = { &v3_crld, &v3_ext_ku, &v3_crl_reason, #ifndef OPENSSL_NO_OCSP &v3_crl_invdate, #endif &v3_sxnet, &v3_info, #ifndef OPENSSL_NO_OCSP &v3_ocsp_nonce, &v3_ocsp_crlid, &v3_ocsp_accresp, &v3_ocsp_nocheck, &v3_ocsp_acutoff, &v3_ocsp_serviceloc, #endif &v3_sinfo, #ifndef OPENSSL_NO_OCSP &v3_crl_hold #endif }; /* Number of standard extensions */ Loading
crypto/x509v3/v3_ocsp.c +3 −0 Original line number Diff line number Diff line Loading @@ -56,6 +56,8 @@ * */ #ifndef OPENSSL_NO_OCSP #include <stdio.h> #include "cryptlib.h" #include <openssl/conf.h> Loading Loading @@ -270,3 +272,4 @@ static int i2r_ocsp_serviceloc(X509V3_EXT_METHOD *method, void *in, BIO *bp, int err: return 0; } #endif