aboutsummaryrefslogtreecommitdiff
path: root/pkg/types/crypto_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/types/crypto_test.go')
-rw-r--r--pkg/types/crypto_test.go15
1 files changed, 0 insertions, 15 deletions
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 {