[BACK]Return to s_client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/s_client.c between version 1.57 and 1.58

version 1.57, 2021/12/26 14:46:06 version 1.58, 2022/02/03 17:44:04
Line 1772 
Line 1772 
             SSL_CIPHER_get_name(c));              SSL_CIPHER_get_name(c));
         if (peer != NULL) {          if (peer != NULL) {
                 EVP_PKEY *pktmp;                  EVP_PKEY *pktmp;
                 pktmp = X509_get_pubkey(peer);  
                   pktmp = X509_get0_pubkey(peer);
                 BIO_printf(bio, "Server public key is %d bit\n",                  BIO_printf(bio, "Server public key is %d bit\n",
                     EVP_PKEY_bits(pktmp));                      EVP_PKEY_bits(pktmp));
                 EVP_PKEY_free(pktmp);  
         }          }
         BIO_printf(bio, "Secure Renegotiation IS%s supported\n",          BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
             SSL_get_secure_renegotiation_support(s) ? "" : " NOT");              SSL_get_secure_renegotiation_support(s) ? "" : " NOT");

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.58