forked from canonical/secboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_test.go
185 lines (158 loc) · 4.17 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// -*- 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 (
"crypto"
"io"
"time"
"golang.org/x/sys/unix"
"github.com/snapcore/secboot/internal/luks2"
"github.com/snapcore/secboot/internal/luksview"
)
const (
NilHash = nilHash
)
var (
UnmarshalV1KeyPayload = unmarshalV1KeyPayload
UnmarshalProtectedKeys = unmarshalProtectedKeys
)
type (
KdfParams = kdfParams
ProtectedKeys = protectedKeys
)
func KDFOptionsKdfParams(o KDFOptions, keyLen uint32) (*KdfParams, error) {
return o.kdfParams(keyLen)
}
func (o *Argon2Options) KdfParams(keyLen uint32) (*KdfParams, error) {
return o.kdfParams(keyLen)
}
func (o *PBKDF2Options) KdfParams(keyLen uint32) (*KdfParams, error) {
return o.kdfParams(keyLen)
}
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) 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 MockPBKDF2Benchmark(fn func(time.Duration, crypto.Hash) (uint, error)) (restore func()) {
orig := pbkdf2Benchmark
pbkdf2Benchmark = fn
return func() {
pbkdf2Benchmark = orig
}
}
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
}
}
func MockKeyDataGeneration(n int) (restore func()) {
orig := KeyDataGeneration
KeyDataGeneration = n
return func() {
KeyDataGeneration = orig
}
}
func MockHashAlgAvailable() (restore func()) {
orig := hashAlgAvailable
hashAlgAvailable = func(*HashAlg) bool {
return false
}
return func() {
hashAlgAvailable = orig
}
}
func (d *KeyData) DerivePassphraseKeys(passphrase string) (key, iv, auth []byte, err error) {
return d.derivePassphraseKeys(passphrase)
}
func MockUnixStat(f func(devicePath string, st *unix.Stat_t) error) (restore func()) {
old := unixStat
unixStat = f
return func() {
unixStat = old
}
}