You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per the Go 1.18 release notes: "crypto/x509 will now reject certificates signed with the SHA-1 hash function. This doesn't apply to self-signed root certificates. Practical attacks against SHA-1 have been demonstrated since 2017 and publicly trusted Certificate Authorities have not issued SHA-1 certificates since 2015."
This is causing quite a few of the test cases to fail with Go 1.18.
The text was updated successfully, but these errors were encountered:
And easy solution would be to add GODEBUG=x509sha1=1 to tests, but it's just a stopgap until go1.19
The real solution is to regenerate the certs in the testdata
Per the Go 1.18 release notes: "crypto/x509 will now reject certificates signed with the SHA-1 hash function. This doesn't apply to self-signed root certificates. Practical attacks against SHA-1 have been demonstrated since 2017 and publicly trusted Certificate Authorities have not issued SHA-1 certificates since 2015."
This is causing quite a few of the test cases to fail with Go 1.18.
The text was updated successfully, but these errors were encountered: