]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
*) mod_tls: added mod_tls from abetterinternet, donated
authorStefan Eissing <icing@apache.org>
Tue, 30 Nov 2021 16:29:20 +0000 (16:29 +0000)
committerStefan Eissing <icing@apache.org>
Tue, 30 Nov 2021 16:29:20 +0000 (16:29 +0000)
commit85ae4b4d6ac852a7d8ae971bd5db4f43efb91267
tree94b5fbc9a4e98e0725b274a216142c5ab8a33261
parentbf5ebf9a1511dc029de6c3f394e3c1997c5988f8
  *) mod_tls: added mod_tls from abetterinternet, donated
     by ISRG/Prossimo <https://github.com/abetterinternet/mod_tls>.
     - adds font-/backend TLS (v1.2/v1.3) via the Rust rustls crate
       and its rustls-ffi C binding <https://github.com/rustls/rustls-ffi>.
     - documentation at <https://github.com/abetterinternet/mod_tls>
       (adding to Apache's manual TBD)
     - build support for Apache httpd configure on *nix platforms,
       rustls is linked statically into mod_tls.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1895432 13f79535-47bb-0310-9956-ffa450edef68
25 files changed:
changes-entries/tls_added.txt [new file with mode: 0644]
modules/tls/Makefile.in [new file with mode: 0644]
modules/tls/config2.m4 [new file with mode: 0644]
modules/tls/mod_tls.c [new file with mode: 0644]
modules/tls/mod_tls.h [new file with mode: 0644]
modules/tls/modules.mk [new file with mode: 0644]
modules/tls/tls_cache.c [new file with mode: 0644]
modules/tls/tls_cache.h [new file with mode: 0644]
modules/tls/tls_cert.c [new file with mode: 0644]
modules/tls/tls_cert.h [new file with mode: 0644]
modules/tls/tls_conf.c [new file with mode: 0644]
modules/tls/tls_conf.h [new file with mode: 0644]
modules/tls/tls_core.c [new file with mode: 0644]
modules/tls/tls_core.h [new file with mode: 0644]
modules/tls/tls_filter.c [new file with mode: 0644]
modules/tls/tls_filter.h [new file with mode: 0644]
modules/tls/tls_ocsp.c [new file with mode: 0644]
modules/tls/tls_ocsp.h [new file with mode: 0644]
modules/tls/tls_proto.c [new file with mode: 0644]
modules/tls/tls_proto.h [new file with mode: 0644]
modules/tls/tls_util.c [new file with mode: 0644]
modules/tls/tls_util.h [new file with mode: 0644]
modules/tls/tls_var.c [new file with mode: 0644]
modules/tls/tls_var.h [new file with mode: 0644]
modules/tls/tls_version.h [new file with mode: 0644]