Package: gnutls28 / 3.7.0-5
Metadata
Package | Version | Patches format |
---|---|---|
gnutls28 | 3.7.0-5 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
14_version_gettextcat.diff | (download) |
configure.ac |
3 3 + 0 - 0 ! |
version filename of locale data (gnutls30.mo instead of gnutls.mo) This is necessary to make e.g. libgnutls26 and libgnutls28 co-installable. |
30_guile snarf.diff | (download) |
guile/src/Makefile.am |
2 2 + 0 - 0 ! |
work around guile-snarf hardcoding the at-build default compiler which breaks when it changes ion Debian. |
40_fix_ipv6only_testsuite_AI_ADDRCONFIG.diff | (download) |
src/serv.c |
6 1 + 5 - 0 ! |
fix testsuite errors on ipv6 only hosts Do not set AI_ADDRCONFIG flag on getaddrinfo since it breaks the testsuite on hosts with no IPv4 addresses except for the loopback interface. With that flag present gnutls-Serv would on listen on IPv6 interfaces, but the testsuite talks to 127.0.0.1. |
48_0001 Fix non empty session id TLS13_APPENDIX_D4.patch | (download) |
lib/handshake.c |
5 4 + 1 - 0 ! |
[patch 1/6] fix non-empty session id (tls13_appendix_d4) When TLS1.3 is used with middlebox compatible mode, the session id should be filled with random session id, but remained empty. Signed-off-by: Norbert Pocs <npocs@redhat.com> Closes #1074 |
48_0002 tests Fix tpmtool_test due to changes in trousers.patch | (download) |
tests/tpmtool_test.sh |
37 27 + 10 - 0 ! |
[patch 2/6] tests: fix tpmtool_test due to changes in trousers Recent changes to trousers now require an ownership of root:tss for the tcsd config file, older ones requires tss:tss. So, start tcsd using trial and error with either one of these ownership configurations until one works. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com> |
48_0003 testpkcs11 use datefudge to trick certificate expiry.patch | (download) |
tests/testpkcs11.sh |
12 11 + 1 - 0 ! |
[patch 3/6] testpkcs11: use datefudge to trick certificate expiry The certificates stored in tests/testpkcs11-certs expired on 2020-12-13. To avoid verification failure due to that, use datefudge to set custom date when calling gnutls-cli, gnutls-serv, and certtool. Based on the patch by Andreas Metzler: https://gitlab.com/gnutls/gnutls/-/issues/1135#note_469682121 Signed-off-by: Daiki Ueno <ueno@gnu.org> |
48_0005 libgnutls openssl Clean up list of exported symbols.patch | (download) |
extra/Makefile.am |
3 2 + 1 - 0 ! |
[patch 5/6] libgnutls-openssl: clean up list of exported symbols Signed-off-by: Andreas Metzler <ametzler@bebt.de> |
48_0006 Fix a common typo of gnutls_priority_t.patch | (download) |
lib/algorithms/ciphersuites.c |
2 1 + 1 - 0 ! |
[patch 6/6] fix a common typo of gnutls_priority_t. Signed-off-by: Sadie Powell <sadie@witchery.services> |
49_0001 gnutls_x509_trust_list_verify_crt2 ignore duplicate .patch | (download) |
lib/x509/verify-high.c |
157 135 + 22 - 0 ! |
[patch] gnutls_x509_trust_list_verify_crt2: ignore duplicate certificates The commit ebb19db9165fed30d73c83bab1b1b8740c132dfd caused a regression, where duplicate certificates in a certificate chain are no longer ignored but treated as a non-contiguous segment and that results in calling the issuer callback, or a verification failure. This adds a mechanism to record certificates already seen in the chain, and skip them while still allow the caller to inject missing certificates. Signed-off-by: Daiki Ueno <ueno@gnu.org> |