forked from canonical/secboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_test.go
121 lines (105 loc) · 2.95 KB
/
export_test.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2021 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package secboot
import (
"io"
"github.com/snapcore/secboot/internal/luks2"
"github.com/snapcore/secboot/internal/luksview"
)
func (o *KDFOptions) DeriveCostParams(keyLen int, kdf KDF) (*KDFCostParams, error) {
return o.deriveCostParams(keyLen, kdf)
}
func MockLUKS2Activate(fn func(string, string, []byte, int) error) (restore func()) {
origActivate := luks2Activate
luks2Activate = fn
return func() {
luks2Activate = origActivate
}
}
func MockLUKS2AddKey(fn func(string, []byte, []byte, *luks2.AddKeyOptions) error) (restore func()) {
origAddKey := luks2AddKey
luks2AddKey = fn
return func() {
luks2AddKey = origAddKey
}
}
func MockLUKS2Deactivate(fn func(string) error) (restore func()) {
origDeactivate := luks2Deactivate
luks2Deactivate = fn
return func() {
luks2Deactivate = origDeactivate
}
}
func MockLUKS2Format(fn func(string, string, []byte, *luks2.FormatOptions) error) (restore func()) {
origFormat := luks2Format
luks2Format = fn
return func() {
luks2Format = origFormat
}
}
func MockLUKS2ImportToken(fn func(string, luks2.Token, *luks2.ImportTokenOptions) error) (restore func()) {
origImportToken := luks2ImportToken
luks2ImportToken = fn
return func() {
luks2ImportToken = origImportToken
}
}
func MockLUKS2KillSlot(fn func(string, int, []byte) error) (restore func()) {
origKillSlot := luks2KillSlot
luks2KillSlot = fn
return func() {
luks2KillSlot = origKillSlot
}
}
func MockLUKS2RemoveToken(fn func(string, int) error) (restore func()) {
origRemoveToken := luks2RemoveToken
luks2RemoveToken = fn
return func() {
luks2RemoveToken = origRemoveToken
}
}
func MockLUKS2SetSlotPriority(fn func(string, int, luks2.SlotPriority) error) (restore func()) {
origSetSlotPriority := luks2SetSlotPriority
luks2SetSlotPriority = fn
return func() {
luks2SetSlotPriority = origSetSlotPriority
}
}
func MockNewLUKSView(fn func(string, luks2.LockMode) (*luksview.View, error)) (restore func()) {
origNewLUKSView := newLUKSView
newLUKSView = fn
return func() {
newLUKSView = origNewLUKSView
}
}
func MockRuntimeNumCPU(n int) (restore func()) {
orig := runtimeNumCPU
runtimeNumCPU = func() int {
return n
}
return func() {
runtimeNumCPU = orig
}
}
func MockStderr(w io.Writer) (restore func()) {
orig := osStderr
osStderr = w
return func() {
osStderr = orig
}
}