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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
|
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-03-01 17:10+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "SYSTEMD-CRYPTENROLL"
msgstr ""
#. type: TH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "systemd 255"
msgstr ""
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "systemd-cryptenroll"
msgstr ""
#. -----------------------------------------------------------------
#. * MAIN CONTENT STARTS HERE *
#. -----------------------------------------------------------------
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "NAME"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"systemd-cryptenroll - Enroll PKCS#11, FIDO2, TPM2 token/devices to LUKS2 "
"encrypted volumes"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "SYNOPSIS"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "B<systemd-cryptenroll> [OPTIONS...] [DEVICE]"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "DESCRIPTION"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"B<systemd-cryptenroll> is a tool for enrolling hardware security tokens and "
"devices into a LUKS2 encrypted volume, which may then be used to unlock the "
"volume during boot\\&. Specifically, it supports tokens and credentials of "
"the following kind to be enrolled:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"PKCS#11 security tokens and smartcards that may carry an RSA key pair (e\\&."
"g\\&. various YubiKeys)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"FIDO2 security tokens that implement the \"hmac-secret\" extension (most "
"FIDO2 keys, including YubiKeys)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "TPM2 security devices"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "Regular passphrases"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Recovery keys\\&. These are similar to regular passphrases, however are "
"randomly generated on the computer and thus generally have higher entropy "
"than user-chosen passphrases\\&. Their character set has been designed to "
"ensure they are easy to type in, while having high entropy\\&. They may also "
"be scanned off screen using QR codes\\&. Recovery keys may be used for "
"unlocking LUKS2 volumes wherever passphrases are accepted\\&. They are "
"intended to be used in combination with an enrolled hardware security token, "
"as a recovery option when the token is lost\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"In addition, the tool may be used to enumerate currently enrolled security "
"tokens and wipe a subset of them\\&. The latter may be combined with the "
"enrollment operation of a new security token, in order to update or replace "
"enrollments\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"The tool supports only LUKS2 volumes, as it stores token meta-information in "
"the LUKS2 JSON token area, which is not available in other encryption "
"formats\\&."
msgstr ""
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "TPM2 PCRs and policies"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"PCRs allow binding of the encryption of secrets to specific software "
"versions and system state, so that the enrolled key is only accessible (may "
"be \"unsealed\") if specific trusted software and/or configuration is "
"used\\&. Such bindings may be created with the option B<--tpm2-pcrs=> "
"described below\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Secrets may also be bound indirectly: a signed policy for a state of some "
"combination of PCR values is provided, and the secret is bound to the public "
"part of the key used to sign this policy\\&. This means that the owner of a "
"key can generate a sequence of signed policies, for specific software "
"versions and system states, and the secret can be decrypted as long as the "
"machine state matches one of those policies\\&. For example, a vendor may "
"provide such a policy for each kernel+initrd update, allowing users to "
"encrypt secrets so that they can be decrypted when running any kernel+initrd "
"signed by the vendor\\&. Such bindings may be created with the options B<--"
"tpm2-public-key=>, B<--tpm2-public-key-pcrs=>, B<--tpm2-signature=> "
"described below\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"See \\m[blue]B<Linux TPM PCR Registry>\\m[]\\&\\s-2\\u[1]\\d\\s+2 for an "
"authoritative list of PCRs and how they are updated\\&. The table below "
"contains a quick reference, describing in particular the PCRs modified by "
"systemd\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<Table\\ \\&1.\\ \\&Well-known PCR Definitions>"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "PCR"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "name"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Explanation"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid ".T&"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "l l l"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "l l l."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "0"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "platform-code"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Core system firmware executable code; changes on firmware updates"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "1"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "platform-config"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Core system firmware data/host platform configuration; typically contains serial and model numbers, changes on basic hardware/CPU/RAM replacements"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "2"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "external-code"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Extended or pluggable executable code; includes option ROMs on pluggable hardware"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "3"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "external-config"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Extended or pluggable firmware data; includes information about pluggable hardware"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "4"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "boot-loader-code"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Boot loader and additional drivers, PE binaries invoked by the boot loader; changes on boot loader updates\\&. B<sd-stub>(7) measures system extension images read from the ESP here too (see B<systemd-sysext>(8))\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "5"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "boot-loader-config"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "GPT/Partition table; changes when the partitions are added, modified, or removed"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "7"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "secure-boot-policy"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Secure Boot state; changes when UEFI SecureBoot mode is enabled/disabled, or firmware certificates (PK, KEK, db, dbx, \\&...) changes\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "9"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "kernel-initrd"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "The Linux kernel measures all initrds it receives into this PCR\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "10"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "ima"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "The IMA project measures its runtime state into this PCR\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "11"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "kernel-boot"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "B<systemd-stub>(7) measures the ELF kernel image, embedded initrd and other payload of the PE image it is placed in into this PCR\\&. B<systemd-pcrphase.service>(8) measures boot phase strings into this PCR at various milestones of the boot process\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "12"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "kernel-config"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "B<systemd-boot>(7) measures the kernel command line into this PCR\\&. B<systemd-stub>(7) measures any manually specified kernel command line (i\\&.e\\&. a kernel command line that overrides the one embedded in the unified PE image) and loaded credentials into this PCR\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "13"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "sysexts"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "B<systemd-stub>(7) measures any B<systemd-sysext>(8) images it passes to the booted kernel into this PCR\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "14"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "shim-policy"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "The shim project measures its \"MOK\" certificates and hashes into this PCR\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "15"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "system-identity"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "B<systemd-cryptsetup>(8) optionally measures the volume key of activated LUKS volumes into this PCR\\&. B<systemd-pcrmachine.service>(8) measures the B<machine-id>(5) into this PCR\\&. B<systemd-pcrfs@.service>(8) measures mount points, file system UUIDs, labels, partition UUIDs of the root and /var/ filesystems into this PCR\\&."
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "16"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "debug"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Debug"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "23"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "application-support"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "Application Support"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"In general, encrypted volumes would be bound to some combination of PCRs 7, "
"11, and 14 (if shim/MOK is used)\\&. In order to allow firmware and OS "
"version updates, it is typically not advisable to use PCRs such as 0 and 2, "
"since the program code they cover should already be covered indirectly "
"through the certificates measured into PCR 7\\&. Validation through "
"certificates hashes is typically preferable over validation through direct "
"measurements as it is less brittle in context of OS/firmware updates: the "
"measurements will change on every update, but signatures should remain "
"unchanged\\&. See the \\m[blue]B<Linux TPM PCR "
"Registry>\\m[]\\&\\s-2\\u[1]\\d\\s+2 for more discussion\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "LIMITATIONS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Note that currently when enrolling a new key of one of the five supported "
"types listed above, it is required to first provide a passphrase, a recovery "
"key or a FIDO2 token\\&. It\\*(Aqs currently not supported to unlock a "
"device with a TPM2/PKCS#11 key in order to enroll a new TPM2/PKCS#11 key\\&. "
"Thus, if in future key roll-over is desired it\\*(Aqs generally recommended "
"to ensure a passphrase, a recovery key or a FIDO2 token is always "
"enrolled\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Also note that support for enrolling multiple FIDO2 tokens is currently "
"limited\\&. When multiple FIDO2 tokens are enrolled, B<systemd-cryptseup> "
"will perform pre-flight requests to attempt to identify which of the "
"enrolled tokens are currently plugged in\\&. However, this is not possible "
"for FIDO2 tokens with user verification (UV, usually via biometrics), in "
"which case it will fall back to attempting each enrolled token one by "
"one\\&. This will result in multiple prompts for PIN and user "
"verification\\&. This limitation does not apply to PKCS#11 tokens\\&."
msgstr ""
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "COMPATIBILITY"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Security technology both in systemd and in the general industry constantly "
"evolves\\&. In order to provide best security guarantees, the way TPM2, "
"FIDO2, PKCS#11 devices are enrolled is regularly updated in newer versions "
"of systemd\\&. Whenever this happens the following compatibility guarantees "
"are given:"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Old enrollments continue to be supported and may be unlocked with newer "
"versions of B<systemd-cryptsetup@.service>(8)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"The opposite is not guaranteed however: it might not be possible to unlock "
"volumes with enrollments done with a newer version of B<systemd-cryptenroll> "
"with an older version of B<systemd-cryptsetup>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"That said, it is generally recommended to use matching versions of B<systemd-"
"cryptenroll> and B<systemd-cryptsetup>, since this is best tested and "
"supported\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"It might be advisable to re-enroll existing enrollments to take benefit of "
"newer security features, as they are added to systemd\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "OPTIONS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "The following options are understood:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--password>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Enroll a regular password/passphrase\\&. This command is mostly equivalent "
"to B<cryptsetup luksAddKey>, however may be combined with B<--wipe-slot=> in "
"one call, see below\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "Added in version 248\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--recovery-key>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Enroll a recovery key\\&. Recovery keys are mostly identical to passphrases, "
"but are computer-generated instead of being chosen by a human, and thus have "
"a guaranteed high entropy\\&. The key uses a character set that is easy to "
"type in, and may be scanned off screen via a QR code\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--unlock-key-file=>I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Use a file instead of a password/passphrase read from stdin to unlock the "
"volume\\&. Expects the PATH to the file containing your key to unlock the "
"volume\\&. Currently there is nothing like B<--key-file-offset=> or B<--key-"
"file-size=> so this file has to only contain the full key\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "Added in version 252\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--unlock-fido2-device=>I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Use a FIDO2 device instead of a password/passphrase read from stdin to "
"unlock the volume\\&. Expects a hidraw device referring to the FIDO2 device "
"(e\\&.g\\&. /dev/hidraw1)\\&. Alternatively the special value \"auto\" may "
"be specified, in order to automatically determine the device node of a "
"currently plugged in security token (of which there must be exactly one)\\&. "
"This automatic discovery is unsupported if B<--fido2-device=> option is also "
"specified\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "Added in version 253\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--pkcs11-token-uri=>I<URI>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Enroll a PKCS#11 security token or smartcard (e\\&.g\\&. a YubiKey)\\&. "
"Expects a PKCS#11 smartcard URI referring to the token\\&. Alternatively the "
"special value \"auto\" may be specified, in order to automatically determine "
"the URI of a currently plugged in security token (of which there must be "
"exactly one)\\&. The special value \"list\" may be used to enumerate all "
"suitable PKCS#11 tokens currently plugged in\\&. The security token must "
"contain an RSA key pair which is used to encrypt the randomly generated key "
"that is used to unlock the LUKS2 volume\\&. The encrypted key is then stored "
"in the LUKS2 JSON token header area\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"In order to unlock a LUKS2 volume with an enrolled PKCS#11 security token, "
"specify the B<pkcs11-uri=> option in the respective /etc/crypttab line:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "myvolume /dev/sda1 - pkcs11-uri=auto\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"See B<crypttab>(5) for a more comprehensive example of a B<systemd-"
"cryptenroll> invocation and its matching /etc/crypttab line\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--fido2-credential-algorithm=>I<STRING>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Specify COSE algorithm used in credential generation\\&. The default value "
"is \"es256\"\\&. Supported values are \"es256\", \"rs256\" and \"eddsa\"\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"\"es256\" denotes ECDSA over NIST P-256 with SHA-256\\&. \"rs256\" denotes "
"2048-bit RSA with PKCS#1\\&.5 padding and SHA-256\\&. \"eddsa\" denotes "
"EDDSA over Curve25519 with SHA-512\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "Note that your authenticator may not support some algorithms\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "Added in version 251\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--fido2-device=>I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Enroll a FIDO2 security token that implements the \"hmac-secret\" extension "
"(e\\&.g\\&. a YubiKey)\\&. Expects a hidraw device referring to the FIDO2 "
"device (e\\&.g\\&. /dev/hidraw1)\\&. Alternatively the special value "
"\"auto\" may be specified, in order to automatically determine the device "
"node of a currently plugged in security token (of which there must be "
"exactly one)\\&. This automatic discovery is unsupported if B<--unlock-fido2-"
"device=> option is also specified\\&. The special value \"list\" may be used "
"to enumerate all suitable FIDO2 tokens currently plugged in\\&. Note that "
"many hardware security tokens that implement FIDO2 also implement the older "
"PKCS#11 standard\\&. Typically FIDO2 is preferable, given it\\*(Aqs simpler "
"to use and more modern\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"In order to unlock a LUKS2 volume with an enrolled FIDO2 security token, "
"specify the B<fido2-device=> option in the respective /etc/crypttab line:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "myvolume /dev/sda1 - fido2-device=auto\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--fido2-with-client-pin=>I<BOOL>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"When enrolling a FIDO2 security token, controls whether to require the user "
"to enter a PIN when unlocking the volume (the FIDO2 \"clientPin\" "
"feature)\\&. Defaults to \"yes\"\\&. (Note: this setting is without effect "
"if the security token does not support the \"clientPin\" feature at all, or "
"does not allow enabling or disabling it\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "Added in version 249\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--fido2-with-user-presence=>I<BOOL>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"When enrolling a FIDO2 security token, controls whether to require the user "
"to verify presence (tap the token, the FIDO2 \"up\" feature) when unlocking "
"the volume\\&. Defaults to \"yes\"\\&. (Note: this setting is without effect "
"if the security token does not support the \"up\" feature at all, or does "
"not allow enabling or disabling it\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--fido2-with-user-verification=>I<BOOL>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"When enrolling a FIDO2 security token, controls whether to require user "
"verification when unlocking the volume (the FIDO2 \"uv\" feature)\\&. "
"Defaults to \"no\"\\&. (Note: this setting is without effect if the security "
"token does not support the \"uv\" feature at all, or does not allow enabling "
"or disabling it\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--tpm2-device=>I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Enroll a TPM2 security chip\\&. Expects a device node path referring to the "
"TPM2 chip (e\\&.g\\&. /dev/tpmrm0)\\&. Alternatively the special value "
"\"auto\" may be specified, in order to automatically determine the device "
"node of a currently discovered TPM2 device (of which there must be exactly "
"one)\\&. The special value \"list\" may be used to enumerate all suitable "
"TPM2 devices currently discovered\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"In order to unlock a LUKS2 volume with an enrolled TPM2 security chip, "
"specify the B<tpm2-device=> option in the respective /etc/crypttab line:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "myvolume /dev/sda1 - tpm2-device=auto\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Use B<--tpm2-pcrs=> (see below) to configure which TPM2 PCR indexes to bind "
"the enrollment to\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "B<--tpm2-device-key=>I<PATH>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Enroll a TPM2 security chip using its public key\\&. Expects a path "
"referring to the TPM2 public key in TPM2B_PUBLIC format\\&. This cannot be "
"used with B<--tpm2-device=>, as it performs the same operation, but without "
"connecting to the TPM2 security chip; instead the enrollment is calculated "
"using the provided TPM2 key\\&. This is useful in situations where the TPM2 "
"security chip is not available at the time of enrollment\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"The key, in most cases, should be the Storage Root Key (SRK) from a local "
"TPM2 security chip\\&. If a key from a different handle (not the SRK) is "
"used, you must specify its handle index using B<--tpm2-seal-key-handle=>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"The B<systemd-tpm2-setup.service>(8) service writes the SRK to /run/systemd/"
"tpm2-srk-public-key\\&.tpm2b_public automatically during boot, in the "
"correct format\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Alternatively, you may use B<systemd-analyze srk> to retrieve the SRK from "
"the TPM2 security chip explicitly\\&. See B<systemd-analyze>(1) for "
"details\\&. Example:"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "systemd-analyze srk E<gt> srk\\&.tpm2b_public\n"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "Added in version 255\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "B<--tpm2-seal-key-handle=>I<HANDLE>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Configures which parent key to use for sealing, using the TPM handle (index) "
"of the key\\&. This is used to \"seal\" (encrypt) a secret and must be used "
"later to \"unseal\" (decrypt) the secret\\&. Expects a hexadecimal 32bit "
"integer, optionally prefixed with \"0x\"\\&. Allowable values are any handle "
"index in the persistent (\"0x81000000\"-\"0x81ffffff\") or transient "
"(\"0x80000000\"-\"0x80ffffff\") ranges\\&. Since transient handles are lost "
"after a TPM reset, and may be flushed during TPM context switching, they "
"should not be used except for very specific use cases, e\\&.g\\&. testing\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"The default is the Storage Root Key (SRK) handle index \"0x81000001\"\\&. A "
"value of 0 will use the default\\&. For the SRK handle, a new key will be "
"created and stored in the TPM if one does not already exist; for any other "
"handle, the key must already exist in the TPM at the specified handle "
"index\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "This should not be changed unless you know what you are doing\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--tpm2-pcrs=> [PCR...]"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Configures the TPM2 PCRs (Platform Configuration Registers) to bind to when "
"enrollment is requested via B<--tpm2-device=>\\&. Takes a list of PCR "
"entries, where each entry starts with a name or numeric index in the range "
"0\\&...23, optionally followed by \":\" and a hash algorithm name "
"(specifying the PCR bank), optionally followed by \"=\" and a hash digest "
"value\\&. Multiple PCR entries are separated by \"+\"\\&. If not specified, "
"the default is to use PCR 7 only\\&. If an empty string is specified, binds "
"the enrollment to no PCRs at all\\&. See the table above for a list of "
"available PCRs\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Example: B<--tpm2-pcrs=boot-loader-code+platform-config+boot-loader-config> "
"specifies that PCR registers 4, 1, and 5 should be used\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Example: B<--tpm2-pcrs=7:sha256> specifies that PCR register 7 from the "
"SHA256 bank should be used\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Example: B<--tpm2-pcrs=4:sha1=3a3f780f11a4b49969fcaa80cd6e3957c33b2275> "
"specifies that PCR register 4 from the SHA1 bank should be used, and a hash "
"digest value of 3a3f780f11a4b49969fcaa80cd6e3957c33b2275 will be used "
"instead of reading the current PCR value\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--tpm2-with-pin=>I<BOOL>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"When enrolling a TPM2 device, controls whether to require the user to enter "
"a PIN when unlocking the volume in addition to PCR binding, based on TPM2 "
"policy authentication\\&. Defaults to \"no\"\\&. Despite being called PIN, "
"any character can be used, not just numbers\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Note that incorrect PIN entry when unlocking increments the TPM dictionary "
"attack lockout mechanism, and may lock out users for a prolonged time, "
"depending on its configuration\\&. The lockout mechanism is a global "
"property of the TPM, B<systemd-cryptenroll> does not control or configure "
"the lockout mechanism\\&. You may use tpm2-tss tools to inspect or configure "
"the dictionary attack lockout, with B<tpm2_getcap>(1) and "
"B<tpm2_dictionarylockout>(1) commands, respectively\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"B<--tpm2-public-key=> [PATH], B<--tpm2-public-key-pcrs=> [PCR...], B<--tpm2-"
"signature=> [PATH]"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Configures a TPM2 signed PCR policy to bind encryption to\\&. The B<--tpm2-"
"public-key=> option accepts a path to a PEM encoded RSA public key, to bind "
"the encryption to\\&. If this is not specified explicitly, but a file tpm2-"
"pcr-public-key\\&.pem exists in one of the directories /etc/systemd/, /run/"
"systemd/, /usr/lib/systemd/ (searched in this order), it is automatically "
"used\\&. The B<--tpm2-public-key-pcrs=> option takes a list of TPM2 PCR "
"indexes to bind to (same syntax as B<--tpm2-pcrs=> described above)\\&. If "
"not specified defaults to 11 (i\\&.e\\&. this binds the policy to any "
"unified kernel image for which a PCR signature can be provided)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Note the difference between B<--tpm2-pcrs=> and B<--tpm2-public-key-pcrs=>: "
"the former binds decryption to the current, specific PCR values; the latter "
"binds decryption to any set of PCR values for which a signature by the "
"specified public key can be provided\\&. The latter is hence more useful in "
"scenarios where software updates shell be possible without losing access to "
"all previously encrypted LUKS2 volumes\\&. Like with B<--tpm2-pcrs=>, names "
"defined in the table above can also be used to specify the registers, for "
"instance B<--tpm2-public-key-pcrs=boot-loader-code+system-identity>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"The B<--tpm2-signature=> option takes a path to a TPM2 PCR signature file as "
"generated by the B<systemd-measure>(1) tool\\&. If this is not specified "
"explicitly, a suitable signature file tpm2-pcr-signature\\&.json is searched "
"for in /etc/systemd/, /run/systemd/, /usr/lib/systemd/ (in this order) and "
"used\\&. If a signature file is specified or found it is used to verify if "
"the volume can be unlocked with it given the current PCR state, before the "
"new slot is written to disk\\&. This is intended as safety net to ensure "
"that access to a volume is not lost if a public key is enrolled for which no "
"valid signature for the current PCR state is available\\&. If the supplied "
"signature does not unlock the current PCR state and public key combination, "
"no slot is enrolled and the operation will fail\\&. If no signature file is "
"specified or found no such safety verification is done\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid "B<--tpm2-pcrlock=> [PATH]"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"Configures a TPM2 pcrlock policy to bind encryption to\\&. Expects a path to "
"a pcrlock policy file as generated by the B<systemd-pcrlock>(1) tool\\&. If "
"a TPM2 device is enrolled and this option is not used but a file pcrlock\\&."
"json is found in /run/systemd/ or /var/lib/systemd/ it is automatically "
"used\\&. Assign an empty string to turn this behaviour off\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--wipe-slot=> [SLOT...]"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"Wipes one or more LUKS2 key slots\\&. Takes a comma separated list of "
"numeric slot indexes, or the special strings \"all\" (for wiping all key "
"slots), \"empty\" (for wiping all key slots that are unlocked by an empty "
"passphrase), \"password\" (for wiping all key slots that are unlocked by a "
"traditional passphrase), \"recovery\" (for wiping all key slots that are "
"unlocked by a recovery key), \"pkcs11\" (for wiping all key slots that are "
"unlocked by a PKCS#11 token), \"fido2\" (for wiping all key slots that are "
"unlocked by a FIDO2 token), \"tpm2\" (for wiping all key slots that are "
"unlocked by a TPM2 chip), or any combination of these strings or numeric "
"indexes, in which case all slots matching either are wiped\\&. As safety "
"precaution an operation that wipes all slots without exception (so that the "
"volume cannot be unlocked at all anymore, unless the volume key is known) is "
"refused\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"This switch may be used alone, in which case only the requested wipe "
"operation is executed\\&. It may also be used in combination with any of the "
"enrollment options listed above, in which case the enrollment is completed "
"first, and only when successful the wipe operation executed \\(em and the "
"newly added slot is always excluded from the wiping\\&. Combining enrollment "
"and slot wiping may thus be used to update existing enrollments:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "systemd-cryptenroll /dev/sda1 --wipe-slot=tpm2 --tpm2-device=auto\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"The above command will enroll the TPM2 chip, and then wipe all previously "
"created TPM2 enrollments on the LUKS2 volume, leaving only the newly created "
"one\\&. Combining wiping and enrollment may also be used to replace "
"enrollments of different types, for example for changing from a PKCS#11 "
"enrollment to a FIDO2 one:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "systemd-cryptenroll /dev/sda1 --wipe-slot=pkcs11 --fido2-device=auto\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "Or for replacing an enrolled empty password by TPM2:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "systemd-cryptenroll /dev/sda1 --wipe-slot=empty --tpm2-device=auto\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<-h>, B<--help>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "Print a short help text and exit\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "B<--version>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "Print a short version string and exit\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "EXIT STATUS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "On success, 0 is returned, a non-zero failure code otherwise\\&."
msgstr ""
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "EXAMPLES"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
msgid ""
"B<crypttab>(5) and B<systemd-measure>(1) contain various examples "
"employing B<systemd-cryptenroll>\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "SEE ALSO"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid ""
"B<systemd>(1), B<systemd-cryptsetup@.service>(8), B<crypttab>(5), "
"B<cryptsetup>(8), B<systemd-measure>(1)"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid "NOTES"
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
#, no-wrap
msgid " 1."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "Linux TPM PCR Registry"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron
msgid "\\%https://uapi-group.org/specifications/specs/linux_tpm_pcr_registry/"
msgstr ""
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "systemd 254"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid "B<systemd-cryptenroll >B<[OPTIONS...]>B< >B<[DEVICE]>"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid ""
"Configures the TPM2 PCRs (Platform Configuration Registers) to bind to when "
"enrollment is requested via B<--tpm2-device=>\\&. Takes a list of PCR names "
"or numeric indices in the range 0\\&...23\\&. Multiple PCR indexes are "
"separated by \"+\"\\&. If not specified, the default is to use PCR 7 "
"only\\&. If an empty string is specified, binds the enrollment to no PCRs at "
"all\\&. See the table above for a list of available PCRs\\&."
msgstr ""
|