forked from canonical/secboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_test.go
164 lines (142 loc) · 4.03 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
// -*- 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 (
"bytes"
"encoding/binary"
"io"
"github.com/snapcore/secboot/internal/luks2"
"github.com/snapcore/secboot/internal/luksview"
)
var (
UnmarshalV1KeyPayload = unmarshalV1KeyPayload
UnmarshalProtectedKeys = unmarshalProtectedKeys
KeyDataGeneration = keyDataGeneration
)
type ProtectedKeys = protectedKeys
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) 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
}
}
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, kdf KDF) (key, iv, auth []byte, err error) {
return d.derivePassphraseKeys(passphrase, kdf)
}
// MarshalV1Keys serializes the supplied disk unlock key and auxiliary key in
// the v1 format that is ready to be encrypted by a platform's secure device.
func MarshalV1Keys(key DiskUnlockKey, auxKey PrimaryKey) []byte {
w := new(bytes.Buffer)
binary.Write(w, binary.BigEndian, uint16(len(key)))
w.Write(key)
binary.Write(w, binary.BigEndian, uint16(len(auxKey)))
w.Write(auxKey)
return w.Bytes()
}