forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hash.go
50 lines (40 loc) · 1.22 KB
/
hash.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
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/ory-am/fosite (interfaces: Hasher)
package internal
import (
gomock "github.com/golang/mock/gomock"
)
// Mock of Hasher interface
type MockHasher struct {
ctrl *gomock.Controller
recorder *_MockHasherRecorder
}
// Recorder for MockHasher (not exported)
type _MockHasherRecorder struct {
mock *MockHasher
}
func NewMockHasher(ctrl *gomock.Controller) *MockHasher {
mock := &MockHasher{ctrl: ctrl}
mock.recorder = &_MockHasherRecorder{mock}
return mock
}
func (_m *MockHasher) EXPECT() *_MockHasherRecorder {
return _m.recorder
}
func (_m *MockHasher) Compare(_param0 []byte, _param1 []byte) error {
ret := _m.ctrl.Call(_m, "Compare", _param0, _param1)
ret0, _ := ret[0].(error)
return ret0
}
func (_mr *_MockHasherRecorder) Compare(arg0, arg1 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Compare", arg0, arg1)
}
func (_m *MockHasher) Hash(_param0 []byte) ([]byte, error) {
ret := _m.ctrl.Call(_m, "Hash", _param0)
ret0, _ := ret[0].([]byte)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockHasherRecorder) Hash(arg0 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Hash", arg0)
}