-
Notifications
You must be signed in to change notification settings - Fork 178
/
signer.go
57 lines (46 loc) · 1.23 KB
/
signer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mock
import (
crypto "github.com/onflow/flow-go/crypto"
mock "github.com/stretchr/testify/mock"
)
// Signer is an autogenerated mock type for the Signer type
type Signer struct {
mock.Mock
}
// Sign provides a mock function with given fields: msg
func (_m *Signer) Sign(msg []byte) (crypto.Signature, error) {
ret := _m.Called(msg)
var r0 crypto.Signature
if rf, ok := ret.Get(0).(func([]byte) crypto.Signature); ok {
r0 = rf(msg)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(crypto.Signature)
}
}
var r1 error
if rf, ok := ret.Get(1).(func([]byte) error); ok {
r1 = rf(msg)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Verify provides a mock function with given fields: msg, sig, key
func (_m *Signer) Verify(msg []byte, sig crypto.Signature, key crypto.PublicKey) (bool, error) {
ret := _m.Called(msg, sig, key)
var r0 bool
if rf, ok := ret.Get(0).(func([]byte, crypto.Signature, crypto.PublicKey) bool); ok {
r0 = rf(msg, sig, key)
} else {
r0 = ret.Get(0).(bool)
}
var r1 error
if rf, ok := ret.Get(1).(func([]byte, crypto.Signature, crypto.PublicKey) error); ok {
r1 = rf(msg, sig, key)
} else {
r1 = ret.Error(1)
}
return r0, r1
}