diff options
author | jsing <> | 2014-05-25 16:23:10 +0000 |
---|---|---|
committer | jsing <> | 2014-05-25 16:23:10 +0000 |
commit | 20aefbf0b86724bbf87cb9ceb36defa64e4691ab (patch) | |
tree | 3f1db49f0679d8ac712ededb86f1b538423eea91 /src/lib/libssl/s3_clnt.c | |
parent | 23deca1ca2f60559c720fd71c5ac72fb2c862771 (diff) | |
download | openbsd-20aefbf0b86724bbf87cb9ceb36defa64e4691ab.tar.gz openbsd-20aefbf0b86724bbf87cb9ceb36defa64e4691ab.tar.bz2 openbsd-20aefbf0b86724bbf87cb9ceb36defa64e4691ab.zip |
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 'src/lib/libssl/s3_clnt.c')
-rw-r--r-- | src/lib/libssl/s3_clnt.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/libssl/s3_clnt.c b/src/lib/libssl/s3_clnt.c index 16d5dacfc4..863a05adb3 100644 --- a/src/lib/libssl/s3_clnt.c +++ b/src/lib/libssl/s3_clnt.c | |||
@@ -1638,10 +1638,6 @@ ssl3_get_key_exchange(SSL *s) | |||
1638 | al = SSL_AD_DECODE_ERROR; | 1638 | al = SSL_AD_DECODE_ERROR; |
1639 | goto f_err; | 1639 | goto f_err; |
1640 | } | 1640 | } |
1641 | #ifdef SSL_DEBUG | ||
1642 | fprintf(stderr, "USING TLSv1.2 HASH %s\n", | ||
1643 | EVP_MD_name(md)); | ||
1644 | #endif | ||
1645 | p += 2; | 1641 | p += 2; |
1646 | n -= 2; | 1642 | n -= 2; |
1647 | } else | 1643 | } else |
@@ -2674,10 +2670,6 @@ ssl3_send_client_verify(SSL *s) | |||
2674 | goto err; | 2670 | goto err; |
2675 | } | 2671 | } |
2676 | p += 2; | 2672 | p += 2; |
2677 | #ifdef SSL_DEBUG | ||
2678 | fprintf(stderr, "Using TLS 1.2 with client alg %s\n", | ||
2679 | EVP_MD_name(md)); | ||
2680 | #endif | ||
2681 | if (!EVP_SignInit_ex(&mctx, md, NULL) || | 2673 | if (!EVP_SignInit_ex(&mctx, md, NULL) || |
2682 | !EVP_SignUpdate(&mctx, hdata, hdatalen) || | 2674 | !EVP_SignUpdate(&mctx, hdata, hdatalen) || |
2683 | !EVP_SignFinal(&mctx, p + 2, &u, pkey)) { | 2675 | !EVP_SignFinal(&mctx, p + 2, &u, pkey)) { |