Changeset 5674676 in mod_gnutls
- Timestamp:
- Dec 3, 2013, 6:49:10 PM (9 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- 9720026
- Parents:
- 9717fe4
- git-author:
- Daniel Kahn Gillmor <dkg@…> (12/03/13 17:50:07)
- git-committer:
- Daniel Kahn Gillmor <dkg@…> (12/03/13 18:49:10)
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/manual.mdwn
r9717fe4 r5674676 662 662 663 663 This does not fully reflect the security level since the size of 664 665 664 RSA or DHE key exchange parameters affect the security level too. 665 666 ###### SSL\_DH\_PRIME\_BITS 667 668 The number if bits in the modulus for the DH group, if DHE or static 669 DH is used. 670 671 This will not be set if DH is not used. 666 672 667 673 ###### SSL\_CIPHER\_EXPORT … … 727 733 728 734 The certificate type can be X.509 or OPENPGP. 735 -
docs/mod_gnutls_manual.mdwn
r9717fe4 r5674676 595 595 RSA or DHE key exchange parameters affect the security level too. 596 596 597 `SSL_DH_PRIME_BITS` 598 ------------------- 599 600 The number if bits in the modulus for the DH group, if DHE or static 601 DH is used. 602 603 This will not be set if DH is not used. 604 597 605 `SSL_CIPHER_EXPORT` 598 606 ------------------- -
src/gnutls_hooks.c
r9717fe4 r5674676 798 798 (key_size <= 40) ? "true" : "false"); 799 799 800 int dhsize = gnutls_dh_get_prime_bits(ctxt->session); 801 if (dhsize > 0) { 802 tmp = apr_psprintf(r->pool, "%d", dhsize); 803 apr_table_setn(env, "SSL_DH_PRIME_BITS", tmp); 804 } 805 800 806 len = sizeof (sbuf); 801 807 gnutls_session_get_id(ctxt->session, sbuf, &len); -
t/data/dump.cgi
r9717fe4 r5674676 11 11 ----SubjectAltName:---- 12 12 $SSL_CLIENT_S_AN0 13 14 DH prime bits: $SSL_DH_PRIME_BITS 13 15 EOF -
t/tests/12_cgi_variables/gnutls-cli.args
r9717fe4 r5674676 2 2 --x509keyfile=../../client/secret.key 3 3 --x509cafile=../../authority/x509.pem 4 --priority=NORMAL 4 --priority=NORMAL:-KX-ALL:+DHE-RSA -
t/tests/12_cgi_variables/output
r9717fe4 r5674676 8 8 RFC822NAME:test0@modgnutls.test 9 9 10 DH prime bits: 2048 11 10 12 0 11 13 -
t/tests/13_cgi_variables_no_client_cert/output
r9717fe4 r5674676 3 3 Content-Type: text/plain 4 4 5 53 5 64 6 6 ----Certificate:---- 7 7 … … 13 13 14 14 15 DH prime bits: 16 15 17 0 16 18
Note: See TracChangeset
for help on using the changeset viewer.