forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_psa_key_attributes.py
275 lines (229 loc) · 7.23 KB
/
generate_psa_key_attributes.py
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
#
# Copyright (c) 2025 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
"""
Module for generating PSA key attribute binary blobs
"""
import argparse
import struct
import binascii
import math
import json
import sys
from pathlib import Path
from enum import IntEnum
from cryptography.hazmat.primitives import serialization
class PsaKeyType(IntEnum):
"""The type of the key"""
AES = 0x2400
ECC_TWISTED_EDWARDS = 0x4142
RAW_DATA = 0x1001
class PsaKeyBits(IntEnum):
"""Number of bits in the key"""
AES = 256
EDDSA = 255
class PsaUsage(IntEnum):
"""Permitted usage on a key"""
VERIFY_MESSAGE_EXPORT = 0x0801
ENCRYPT_DECRYPT = 0x0300
USAGE_DERIVE = 0x4000
class PsaCracenUsageSceme(IntEnum):
NONE = 0xff
PROTECTED = 0
SEED = 1
ENCRYPTED = 2
RAW = 3
class PsaKeyLifetime(IntEnum):
"""Lifetime and location for storing key"""
PERSISTENT_CRACEN = 0x804E0001
PERSISTENT_CRACEN_KMU = 0x804E4B01
class PsaAlgorithm(IntEnum):
"""Algorithm that can be associated with a key. Not used for AES"""
NONE = 0
CBC = 0x04404000
EDDSA_PURE = 0x06000800
class PlatformKeyAttributes:
def __init__(self,
key_type: PsaKeyType,
identifier: int,
location: PsaKeyLifetime,
usage: PsaUsage,
algorithm: PsaAlgorithm,
size: int,
cracen_usage: PsaCracenUsageSceme = PsaCracenUsageSceme.NONE):
self.key_type = key_type
self.lifetime = location
self.usage = usage
self.alg0 = algorithm
self.alg1 = PsaAlgorithm.NONE
self.bits = size
self.identifier = identifier
if location == PsaKeyLifetime.PERSISTENT_CRACEN_KMU:
if cracen_usage == PsaCracenUsageSceme.NONE:
print("--cracen_usage must be set if location target is PERSISTENT_CRACEN_KMU")
return
self.identifier = 0x7fff0000 | (cracen_usage << 12) | (identifier & 0xff)
if self.key_type == PsaKeyType.AES:
self.alg1 = PsaAlgorithm.NONE
elif self.key_type == PsaKeyType.ECC_TWISTED_EDWARDS:
self.alg1 = PsaAlgorithm.NONE
elif self.key_type == PsaKeyType.RAW_DATA:
self.alg1 = PsaAlgorithm.NONE
else:
raise RuntimeError("Invalid key type")
def pack(self):
"""Builds a binary blob compatible with the psa_key_attributes_s C struct"""
return struct.pack(
"<hhIIIIII",
self.key_type,
self.bits,
self.lifetime,
# Policy
self.usage,
self.alg0,
self.alg1,
self.identifier,
0, # Reserved, only used if key id encodes owner id
)
def is_valid_hexa_code(string):
try:
int(string, 16)
return True
except ValueError:
return False
def main() -> None:
parser = argparse.ArgumentParser(
description="Generate PSA key attributes and write to stdout or"
"create or append the information including the key to a"
"nrfutil compatible json file. Also supports reading key"
"from a PEM file in some cases. Key source can either be"
"a RAW key using the --key argument, a randomly generated"
"key using the --trng-key argument or a public key can be"
"read from a .PEM file. These are mutual exclusive.",
allow_abbrev=False,
)
parser.add_argument(
"--usage",
help="Key usage",
type=str,
required=True,
choices=[x.name for x in PsaUsage],
)
parser.add_argument(
"--id",
help="Key identifier",
type=lambda number_string: int(number_string, 0),
required=True,
)
parser.add_argument(
"--type",
help="Key type",
type=str,
required=True,
choices=[x.name for x in PsaKeyType],
)
parser.add_argument(
"--size",
help="Key size in bits",
type=lambda number_string: int(number_string, 0),
required=True,
)
parser.add_argument(
"--algorithm",
help="Key algorithm",
type=str,
required=False,
default="NONE",
choices=[x.name for x in PsaAlgorithm],
)
parser.add_argument(
"--location",
help="Storage location",
type=str,
required=True,
choices=[x.name for x in PsaKeyLifetime],
)
parser.add_argument(
"--key",
help="Key value",
type=str,
required=False,
)
parser.add_argument(
"--trng-key",
help="Generate key randomly",
action="store_true",
required=False,
)
parser.add_argument(
"--key-from-file",
help="Read key from PEM file",
type=argparse.FileType(mode="rb"),
required=False,
)
parser.add_argument(
"--bin-output",
help="Output metadata as binary",
action="store_true",
required=False,
)
parser.add_argument(
"--file",
help="JSON file to create or modify",
type=str,
required=False,
)
parser.add_argument(
"--cracen_usage",
help="CRACEN KMU Slot usage scheme",
type=str,
required=False,
default="NONE",
choices=[x.name for x in PsaCracenUsageSceme],
)
args = parser.parse_args()
metadata = PlatformKeyAttributes(key_type=PsaKeyType[args.type],
identifier=args.id,
location=PsaKeyLifetime[args.location],
usage=PsaUsage[args.usage],
algorithm=PsaAlgorithm[args.algorithm],
size=args.size,
cracen_usage=PsaCracenUsageSceme[args.cracen_usage]).pack()
metadata_str = binascii.hexlify(metadata).decode('utf-8').upper()
if args.file and Path(args.file).is_file():
with open(args.file, encoding="utf-8") as file:
json_data= json.load(file)
else:
json_data= json.loads('{ "version": 0, "keyslots": [ ]}')
if args.trng_key:
value = f'TRNG:{int(math.ceil(args.size / 8))}'
elif args.key:
key = args.key.strip("0x")
if not is_valid_hexa_code(key):
print("Invalid KEY value")
return
value = f'0x{key}'
elif args.key_from_file:
key_data = args.key_from_file.read()
key = serialization.load_pem_public_key(key_data)
key = key.public_bytes(
encoding=serialization.Encoding.Raw,
format=serialization.PublicFormat.Raw
)
value = f'0x{key.hex()}'
else:
print("Expecting either --key, --trng-key or --key-from-file")
return
json_data["keyslots"].append({"metadata": f'0x{metadata_str}', "value": f'{value}'})
output = json.dumps(json_data, indent=4)
if args.file:
with open(args.file, "w", encoding="utf-8") as file:
file.write(output)
elif args.bin_output:
sys.stdout.buffer.write(metadata)
else:
print(output)
if __name__ == "__main__":
main()