Changeset f4deac5 in mod_gnutls
- Timestamp:
- Jul 5, 2017, 1:16:09 PM (6 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, main, master, proxy-ticket, upstream
- Children:
- b8b1990
- Parents:
- bd6591f
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/mod_gnutls_manual.mdwn
rbd6591f rf4deac5 360 360 OpenPGP Certificate Authentication 361 361 ---------------------------------- 362 363 *Warning:* OpenPGP support has been deprecated in GnuTLS since version 364 3.5.9 and will be removed completely. Consequently, OpenPGP support in 365 `mod_gnutls` is deprecated as well and will be removed in a future 366 release. 362 367 363 368 ### GnuTLSPGPCertificateFile -
src/gnutls_hooks.c
rbd6591f rf4deac5 610 610 return HTTP_UNAUTHORIZED; 611 611 } 612 613 /* If OpenPGP support is already disabled in the loaded GnuTLS 614 * library startup will fail if the configuration tries to 615 * load PGP credentials. Otherwise warn affected users about 616 * deprecation. */ 617 if (sc->pgp_cert_file || sc->pgp_key_file || sc->pgp_ring_file) 618 ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, 619 "Host '%s:%d' is configured to use OpenPGP auth. " 620 "OpenPGP support has been deprecated in GnuTLS " 621 "since version 3.5.9 and will be removed from " 622 "mod_gnutls in a future release.", 623 s->server_hostname, s->port); 612 624 613 625 if (sc->enabled == GNUTLS_ENABLED_TRUE) {
Note: See TracChangeset
for help on using the changeset viewer.