Skip to content

Commit 10d3c06

Browse files
committedMay 18, 2022
Consolidate signaturehash tests
We're well past Go 1.13 now, and our go.mod requires 1.13 as a minimum. No need to separate the tests anymore.
1 parent 189d384 commit 10d3c06

File tree

2 files changed

+2
-47
lines changed

2 files changed

+2
-47
lines changed
 

‎pkg/crypto/signaturehash/signaturehash_go113_test.go

-47
This file was deleted.

‎pkg/crypto/signaturehash/signaturehash_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ func TestParseSignatureSchemes(t *testing.T) {
2525
tls.PKCS1WithSHA256,
2626
tls.PKCS1WithSHA384,
2727
tls.PKCS1WithSHA512,
28+
tls.Ed25519,
2829
},
2930
expected: []Algorithm{
3031
{hash.SHA256, signature.ECDSA},
@@ -33,6 +34,7 @@ func TestParseSignatureSchemes(t *testing.T) {
3334
{hash.SHA256, signature.RSA},
3435
{hash.SHA384, signature.RSA},
3536
{hash.SHA512, signature.RSA},
37+
{hash.Ed25519, signature.Ed25519},
3638
},
3739
insecureHashes: false,
3840
err: nil,

0 commit comments

Comments
 (0)
Please sign in to comment.