Package: golang-github-henvic-httpretty / 0.0.6-3~bpo11+1

Metadata

Package Version Patches format
golang-github-henvic-httpretty 0.0.6-3~bpo11+1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 fix tests for without AES hardware.patch | (download)

client_test.go | 6 3 + 3 - 0 !
server_test.go | 4 2 + 2 - 0 !
2 files changed, 5 insertions(+), 5 deletions(-)

 fix tests for architectures without aes hardware support
 Starting with Go 1.16, ChaCha (TLS_CHACHA20_POLY1305_SHA256)
 is picked over AES (TLS_AES_128_GCM_SHA256) for TLS 1.3 on machines
 that do not have AES hardware support, e.g. on armhf, 386 and ppc64le,
 as caught by Debian autopkgtest for golang-github-henvic-httpretty/0.0.6-2
 since November 2021.
 .
 This patch accommodates TLS_CHACHA20_POLY1305_SHA256 in addition to
 TLS_AES_128_GCM_SHA256 in the TLS 1.3 tests.