diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-25 16:23:11 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-25 16:23:11 +0000 |
commit | 9f3e60e41f953c417212980e75e4c1a603687a50 (patch) | |
tree | 22a42ab9cdfd4f39bbf3cfedca229a979ecb0e26 /lib/libssl/s3_clnt.c | |
parent | 0912697e9f4d270f2d0097582b900d5f0b761cf3 (diff) |
Remove TLS_DEBUG, SSL_DEBUG, CIPHER_DEBUG and OPENSSL_RI_DEBUG. Much of
this is sporadic, hacked up and can easily be put back in an improved form
should we ever need it.
ok miod@
Diffstat (limited to 'lib/libssl/s3_clnt.c')
-rw-r--r-- | lib/libssl/s3_clnt.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/libssl/s3_clnt.c b/lib/libssl/s3_clnt.c index 16d5dacfc4a..863a05adb32 100644 --- a/lib/libssl/s3_clnt.c +++ b/lib/libssl/s3_clnt.c @@ -1638,10 +1638,6 @@ ssl3_get_key_exchange(SSL *s) al = SSL_AD_DECODE_ERROR; goto f_err; } -#ifdef SSL_DEBUG - fprintf(stderr, "USING TLSv1.2 HASH %s\n", - EVP_MD_name(md)); -#endif p += 2; n -= 2; } else @@ -2674,10 +2670,6 @@ ssl3_send_client_verify(SSL *s) goto err; } p += 2; -#ifdef SSL_DEBUG - fprintf(stderr, "Using TLS 1.2 with client alg %s\n", - EVP_MD_name(md)); -#endif if (!EVP_SignInit_ex(&mctx, md, NULL) || !EVP_SignUpdate(&mctx, hdata, hdatalen) || !EVP_SignFinal(&mctx, p + 2, &u, pkey)) { |