From 97540f9ded30f68f9fda62f66f3006414cbfd5b7 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Sat, 21 May 2022 20:31:09 +0200 Subject: move mock signer to internal/ --- pkg/types/crypto_test.go | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'pkg/types/crypto_test.go') diff --git a/pkg/types/crypto_test.go b/pkg/types/crypto_test.go index d95d5fa..181c8f0 100644 --- a/pkg/types/crypto_test.go +++ b/pkg/types/crypto_test.go @@ -4,24 +4,9 @@ import ( "crypto" "crypto/ed25519" "crypto/rand" - "io" "testing" ) -type testSigner struct { - PublicKey PublicKey - Signature Signature - Error error -} - -func (ts *testSigner) Public() crypto.PublicKey { - return ed25519.PublicKey(ts.PublicKey[:]) -} - -func (ts *testSigner) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) { - return ts.Signature[:], ts.Error -} - func newKeyPair(t *testing.T) (crypto.Signer, PublicKey) { vk, sk, err := ed25519.GenerateKey(rand.Reader) if err != nil { -- cgit v1.2.3