qos_core 0.8.0

Core components and logic for QuorumOS applications
Documentation
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
//! The services involved in the key forwarding flow.

use aws_nitro_enclaves_nsm_api::api::AttestationDoc;
use borsh::{BorshDeserialize, BorshSerialize};
use qos_nsm::{
	nitro::{AWS_ROOT_CERT_PEM, attestation_doc_from_der, cert_from_pem},
	types::NsmResponse,
};
use qos_p256::{P256Pair, P256Public};
use serde::{Deserialize, Serialize};

use crate::protocol::{
	ProtocolError, ProtocolState, QosHash,
	services::boot::{VersionedManifestEnvelope, put_manifest_and_pivot},
};

/// An encrypted quorum key along with a signature over the encrypted payload
/// from the sender.
#[derive(BorshDeserialize, BorshSerialize, Serialize, Deserialize)]
pub struct EncryptedQuorumKey {
	/// The encrypted payload: a quorum key
	#[serde(with = "qos_hex::serde")]
	pub encrypted_quorum_key: Vec<u8>,
	/// Signature over the encrypted quorum key
	#[serde(with = "qos_hex::serde")]
	pub signature: Vec<u8>,
}

pub(in crate::protocol) fn inject_key(
	state: &mut ProtocolState,
	EncryptedQuorumKey { encrypted_quorum_key, signature }: EncryptedQuorumKey,
) -> Result<(), ProtocolError> {
	let manifest_envelope = state.handles.get_manifest_envelope()?;
	let manifest = manifest_envelope.manifest();

	// 1. Verify the signature over the `encrypted_quorum_key` against the
	// Quorum Key specified in the New Manifest.
	let quorum_public =
		P256Public::from_bytes(&manifest.namespace().quorum_key)?;
	quorum_public
		.verify(&encrypted_quorum_key, &signature)
		.map_err(|_| ProtocolError::InvalidEncryptedQuorumKeySignature)?;

	// 2. Decrypt the encrypted Quorum Key in the request with the Ephemeral
	// Key.
	let quorum_master_seed = {
		let ephemeral_pair = state.handles.get_ephemeral_key()?;
		let bytes = ephemeral_pair.decrypt(&encrypted_quorum_key)?;
		bytes[..]
			.try_into()
			.map_err(|_| ProtocolError::EncryptedQuorumKeyInvalidLen)?
	};

	// 3. Check that the decrypted Quorum Key public key matches the one
	// specified in the New Manifest.
	let decrypted_quorum_pair = P256Pair::from_master_seed(&quorum_master_seed)
		.map_err(|_| ProtocolError::InvalidQuorumSecret)?;
	if decrypted_quorum_pair.public_key() != quorum_public {
		return Err(ProtocolError::WrongQuorumKey);
	}

	// 4. Rotate the ephemeral key so it's safe for apps to use it independently
	// of boot-related operations, which use the pre-boot ephemeral key as
	// an encryption target (key-forward boot encrypts the quorum key to it)
	let new_ephemeral_key = P256Pair::generate()?;
	state.handles.rotate_ephemeral_key(&new_ephemeral_key)?;

	// 5. Write the Quorum Key to the file system, at which point New Node will
	// automatically pivot to running the Pivot App.
	// (see `src/qos_core/src/reaper.rs`: we loop until the quorum key file exists)
	state.handles.put_quorum_key(&decrypted_quorum_pair)?;

	Ok(())
}

pub(in crate::protocol) fn boot_key_forward(
	state: &mut ProtocolState,
	manifest_envelope: impl Into<VersionedManifestEnvelope>,
	pivot: &[u8],
) -> Result<NsmResponse, ProtocolError> {
	let manifest_envelope = manifest_envelope.into();
	let nsm_response =
		put_manifest_and_pivot(state, &manifest_envelope, pivot)?;
	Ok(nsm_response)
}

pub(in crate::protocol) fn export_key(
	state: &mut ProtocolState,
	new_manifest_envelope: impl Into<VersionedManifestEnvelope>,
	cose_sign1_attestation_document: &[u8],
) -> Result<EncryptedQuorumKey, ProtocolError> {
	let new_manifest_envelope = new_manifest_envelope.into();
	// 1. Check the basic validity of the attestation doc (cert chain etc).
	// Ensures that the attestation document is actually from an AWS controlled
	// NSM module and the document's timestamp was recent.
	let attestation_doc = verify_and_extract_attestation_doc_from_der(
		cose_sign1_attestation_document,
		&*state.attestor,
	)?;

	export_key_internal(state, &new_manifest_envelope, &attestation_doc)
}

// Primary logic of `export_key` pulled out so it can be unit tested.
fn export_key_internal(
	state: &mut ProtocolState,
	new_manifest_envelope: impl Into<VersionedManifestEnvelope>,
	attestation_doc: &AttestationDoc,
) -> Result<EncryptedQuorumKey, ProtocolError> {
	let new_manifest_envelope = new_manifest_envelope.into();
	let old_manifest_envelope = state.handles.get_manifest_envelope()?;
	// steps 2 through 9
	validate_manifest(
		&new_manifest_envelope,
		&old_manifest_envelope,
		attestation_doc,
	)?;

	let eph_key = {
		#[cfg(not(feature = "mock"))]
		{
			let eph_key_bytes = attestation_doc
				.public_key
				.as_ref()
				.ok_or(ProtocolError::MissingEphemeralKey)?;
			P256Public::from_bytes(eph_key_bytes)
				.map_err(|_| ProtocolError::InvalidEphemeralKey)?
		}
		#[cfg(feature = "mock")]
		{
			// For testing, the old enclave and new enclave will need to share
			// an ephemeral key for this to work
			state.handles.get_ephemeral_key()?.public_key()
		}
	};

	let quorum_key = state.handles.get_quorum_key()?;
	// 10. Return the Quorum Key encrypted to the New Node's Ephemeral Key
	// extracted from the attestation document and a signature over the
	// encrypted payload. The Original Node uses its Quorum Key to create the
	// signature.
	let encrypted_quorum_key =
		eph_key.encrypt(&quorum_key.to_master_seed()[..])?;
	let signature = quorum_key.sign(&encrypted_quorum_key)?;

	Ok(EncryptedQuorumKey { encrypted_quorum_key, signature })
}

/// Manifest validation logic. Extracted to make unit testing easier.
fn validate_manifest(
	new_manifest_envelope: impl Into<VersionedManifestEnvelope>,
	old_manifest_envelope: impl Into<VersionedManifestEnvelope>,
	#[allow(unused_variables)] attestation_doc: &AttestationDoc,
) -> Result<(), ProtocolError> {
	let new_manifest_envelope = new_manifest_envelope.into();
	let old_manifest_envelope = old_manifest_envelope.into();
	// 2. Check the signatures over the New Manifest. Ensures that K Manifest
	// Set Members approved the New Manifest.
	new_manifest_envelope.check_approvals()?;

	if !new_manifest_envelope.share_set_approvals().is_empty() {
		return Err(ProtocolError::BadShareSetApprovals);
	}

	let new_manifest = new_manifest_envelope.manifest();
	let old_manifest = old_manifest_envelope.manifest();

	// 3. Check that the Quorum Key of the Local Manifest matches the Quorum Key
	// of the New Manifest. This ensures the request is for the correct Quorum
	// Key.
	if old_manifest.namespace().quorum_key
		!= new_manifest.namespace().quorum_key
	{
		return Err(ProtocolError::DifferentQuorumKey {
			expected: qos_hex::encode(&old_manifest.namespace().quorum_key),
			actual: qos_hex::encode(&new_manifest.namespace().quorum_key),
		});
	}

	// 4. Check that the Manifest Set of the New Manifest matches the Manifest
	// Set of the Local Manifest. Ensures that the signatures are from a trusted
	// Manifest Set. Note that there is still a vulnerability here if we have
	// try to retire a Manifest Set because a critical threshold of it was
	// compromised - that malicious Manifest Set could boot off of an Original
	// Node - thus it's important to retire all Original Nodes ASAP that use
	// compromised Manifest Sets.
	{
		let mut old_members = old_manifest.manifest_set().members.clone();
		let mut new_members = new_manifest.manifest_set().members.clone();
		old_members.sort();
		new_members.sort();
		if old_manifest.manifest_set().threshold
			!= new_manifest.manifest_set().threshold
			|| old_members != new_members
		{
			let old_set = crate::protocol::services::boot::ManifestSet {
				threshold: old_manifest.manifest_set().threshold,
				members: old_members,
			};
			let new_set = crate::protocol::services::boot::ManifestSet {
				threshold: new_manifest.manifest_set().threshold,
				members: new_members,
			};
			return Err(ProtocolError::DifferentManifestSet {
				expected: qos_hex::encode(&old_set.qos_hash()),
				actual: qos_hex::encode(&new_set.qos_hash()),
			});
		}
	}

	// 5. Check that the Namespace of the Local Manifest matches the namespace
	// of the New Manifest. Namespaces are a social construct, but we only want
	// to allow forwarding a Quorum Key to Nodes in the same Namespace to help
	// ensure that the nonce is not abused.
	if old_manifest.namespace().name != new_manifest.namespace().name {
		return Err(ProtocolError::DifferentNamespaceName {
			expected: old_manifest.namespace().name.clone(),
			actual: new_manifest.namespace().name.clone(),
		});
	}

	// 6. Check that the nonce of the New Manifest is greater than or equal to
	// the nonce of the Local Manifest. If they have the same nonce, we check
	// that the Local Manifest has the same hash as an extra measure. Note that
	// while the nonce is verified programmatically in this routine, its
	// maintenance relative to other manifests in the namespace is a social
	// coordination problem and is meant to be solved by the Manifest Set
	// Members approving the manifest. In other words, we rely on the Manifest
	// Set Members to correctly increment the nonce when any change is made to
	// the latest manifest for a namespace.
	if old_manifest.namespace().nonce > new_manifest.namespace().nonce {
		return Err(ProtocolError::LowNonce {
			expected: old_manifest.namespace().nonce,
			actual: new_manifest.namespace().nonce,
		});
	} else if old_manifest.namespace().nonce == new_manifest.namespace().nonce
		&& old_manifest.manifest_hash() != new_manifest.manifest_hash()
	{
		return Err(ProtocolError::DifferentManifest {
			expected: qos_hex::encode(&old_manifest.manifest_hash()),
			actual: qos_hex::encode(&new_manifest.manifest_hash()),
		});
	}

	// 7. Check that the hash of the new manifest is in the `user_data` field of
	// the attestation doc.
	//
	// 8. Check that PCR0, PCR1, PCR2, and PCR3 in the New
	// Manifest match the PCRs in the attestation document. This ensures the New
	// Manifest was used against a Nitro enclave booted with the intended
	// version of QOS. Note that we assume the values for PCR{0, 1 , 2}
	// correspond to a desired version of QOS because the Manifest Set Members
	// had K approvals.
	#[cfg(not(feature = "mock"))]
	{
		qos_nsm::nitro::verify_attestation_doc_against_user_input(
			attestation_doc,
			&new_manifest.manifest_hash(),
			&new_manifest.enclave().pcr0,
			&new_manifest.enclave().pcr1,
			&new_manifest.enclave().pcr2,
			&new_manifest.enclave().pcr3,
		)?;
	}

	// 9. Check that PCR3 in the New Manifest is in the Local Manifests. PCR3 is
	// the IAM role assigned to the EC2 host of the enclave. An IAM role
	// contains an AWS organization's unique ID. By only using the approved PCR3
	// value we ensure that we only ever send the Quorum Key to an enclave that
	// is controlled by the operator, not an enclave that some malicious entity
	// runs that otherwise configured identically to one of the operator's
	// enclaves.
	if old_manifest.enclave().pcr3 != new_manifest.enclave().pcr3 {
		return Err(ProtocolError::DifferentPcr3 {
			expected: qos_hex::encode(&old_manifest.enclave().pcr3),
			actual: qos_hex::encode(&new_manifest.enclave().pcr3),
		});
	}

	Ok(())
}

fn verify_and_extract_attestation_doc_from_der(
	cose_sign1_der: &[u8],
	nsm: &dyn qos_nsm::NsmProvider,
) -> Result<AttestationDoc, ProtocolError> {
	let current_time_milliseconds = nsm.timestamp_ms()?;
	let current_time_seconds = current_time_milliseconds / 1_000;
	let der_cert = cert_from_pem(AWS_ROOT_CERT_PEM)
		.expect("hardcoded cert is valid. qed.");
	attestation_doc_from_der(cose_sign1_der, &der_cert, current_time_seconds)
		.map_err(Into::into)
}

#[cfg(test)]
mod test {
	use std::collections::BTreeMap;

	use aws_nitro_enclaves_nsm_api::api::{AttestationDoc, Digest};
	use qos_crypto::sha_256;
	use qos_nsm::{mock::MockNsm, types::NsmResponse};
	use qos_p256::P256Pair;
	use qos_test_primitives::PathWrapper;
	use serde_bytes::ByteBuf;

	use super::{boot_key_forward, export_key_internal, validate_manifest};
	use crate::{
		handles::Handles,
		protocol::{
			ProtocolError, ProtocolPhase, ProtocolState, QosHash,
			services::{
				boot::{
					Approval, Manifest, ManifestEnvelope, ManifestSet,
					Namespace, NitroConfig, PivotConfig, QuorumMember,
					RestartPolicy, ShareSet,
				},
				key::{EncryptedQuorumKey, inject_key},
			},
		},
	};

	struct TestArgs {
		manifest_envelope: ManifestEnvelope,
		#[allow(dead_code)]
		members_with_keys: Vec<(P256Pair, QuorumMember)>,
		att_doc: AttestationDoc,
		eph_pair: P256Pair,
		quorum_pair: P256Pair,
		pivot: Vec<u8>,
	}

	fn get_test_args() -> TestArgs {
		let quorum_pair = P256Pair::generate().unwrap();
		let member1_pair = P256Pair::generate().unwrap();
		let member2_pair = P256Pair::generate().unwrap();
		let member3_pair = P256Pair::generate().unwrap();

		let pivot = b"this is a pivot binary".to_vec();

		let quorum_members = vec![
			QuorumMember {
				alias: "member1".to_string(),
				pub_key: member1_pair.public_key().to_bytes(),
			},
			QuorumMember {
				alias: "member2".to_string(),
				pub_key: member2_pair.public_key().to_bytes(),
			},
			QuorumMember {
				alias: "member3".to_string(),
				pub_key: member3_pair.public_key().to_bytes(),
			},
		];

		let members_with_keys = vec![
			(member1_pair, quorum_members.first().unwrap().clone()),
			(member2_pair, quorum_members.get(1).unwrap().clone()),
			(member3_pair, quorum_members.get(2).unwrap().clone()),
		];

		let pcr0 = vec![4; 32];
		let pcr1 = vec![3; 32];
		let pcr2 = vec![2; 32];
		let pcr3 = vec![1; 32];
		let manifest = Manifest {
			namespace: Namespace {
				nonce: 420,
				name: "mock namespace".to_string(),
				quorum_key: quorum_pair.public_key().to_bytes(),
			},
			enclave: NitroConfig {
				pcr0: pcr0.clone(),
				pcr1: pcr1.clone(),
				pcr2: pcr2.clone(),
				pcr3: pcr3.clone(),
				aws_root_certificate: b"mock cert".to_vec(),
				qos_commit: "mock qos commit".to_string(),
			},
			pivot: PivotConfig {
				hash: sha_256(&pivot),
				restart: RestartPolicy::Always,
				args: vec![],
				..Default::default()
			},
			manifest_set: ManifestSet { threshold: 2, members: quorum_members },
			share_set: ShareSet { threshold: 2, members: vec![] },
			..Default::default()
		};

		let manifest_set_approvals = (0..2)
			.map(|i| {
				let (pair, member) = &members_with_keys[i];
				Approval {
					signature: pair.sign(&manifest.qos_hash()).unwrap(),
					member: member.clone(),
				}
			})
			.collect();

		let mut pcr_map = BTreeMap::new();
		pcr_map.insert(0, ByteBuf::from(pcr0));
		pcr_map.insert(1, ByteBuf::from(pcr1));
		pcr_map.insert(2, ByteBuf::from(pcr2));
		pcr_map.insert(3, ByteBuf::from(pcr3));

		let eph_pair = P256Pair::generate().unwrap();
		let eph_pub_key = eph_pair.public_key().to_bytes();

		let att_doc = AttestationDoc {
			module_id: String::default(),
			cabundle: Vec::default(),
			pcrs: pcr_map,
			timestamp: u64::default(),
			nonce: None,
			public_key: Some(ByteBuf::from(eph_pub_key)),
			user_data: Some(ByteBuf::from(manifest.qos_hash())),
			digest: Digest::SHA384,
			certificate: ByteBuf::default(),
		};

		let manifest_envelope = ManifestEnvelope {
			manifest,
			manifest_set_approvals,
			share_set_approvals: Vec::default(),
		};

		TestArgs {
			manifest_envelope,
			members_with_keys,
			att_doc,
			eph_pair,
			quorum_pair,
			pivot,
		}
	}

	mod boot_key_forward {
		use super::*;

		#[test]
		fn accepts_approved_manifest() {
			let TestArgs { manifest_envelope, pivot, .. } = get_test_args();

			let pivot_file = PathWrapper::from(
				"/tmp/boot_key_forward_accepts_approved_manifest.pivot",
			);
			let ephemeral_file = PathWrapper::from(
				"/tmp/boot_key_accepts_approved_manifest.eph.secret",
			);
			let manifest_file = PathWrapper::from(
				"/tmp/boot_key_accepts_approved_manifest.manifest",
			);

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				"qorum".to_string(),
				manifest_file.display().to_string(),
				pivot_file.display().to_string(),
			);
			let mut state =
				ProtocolState::new(Box::new(MockNsm), handles.clone(), None);

			let response =
				boot_key_forward(&mut state, &manifest_envelope, &pivot)
					.unwrap();
			if let NsmResponse::Attestation { document } = response {
				assert!(!document.is_empty());
			} else {
				panic!()
			}

			assert!(handles.pivot_exists());
			assert_eq!(
				handles.get_manifest_envelope().unwrap(),
				crate::protocol::services::boot::VersionedManifestEnvelope::V1(
					manifest_envelope,
				)
			);

			handles.get_ephemeral_key().unwrap();
		}

		#[test]
		fn rejects_manifest_if_not_enough_approvals() {
			let TestArgs { mut manifest_envelope, pivot, .. } = get_test_args();

			let pivot_file = PathWrapper::from(
				"/tmp/boot_key_rejects_manifest_if_not_enough_approvals.pivot",
			);
			let ephemeral_file = PathWrapper::from(
				"/tmp/boot_key_rejects_manifest_if_not_enough_approvals.secret",
			);
			let manifest_file = PathWrapper::from(
				"/tmp/boot_key_rejects_manifest_if_not_enough_approvals.manifest",
			);

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				"qorum".to_string(),
				manifest_file.display().to_string(),
				pivot_file.display().to_string(),
			);
			let mut state =
				ProtocolState::new(Box::new(MockNsm), handles.clone(), None);

			// Remove an approval
			manifest_envelope.manifest_set_approvals.pop().unwrap();
			let err = boot_key_forward(&mut state, &manifest_envelope, &pivot);
			assert_eq!(Err(ProtocolError::NotEnoughApprovals), err,);

			// check that nothing was written
			assert!(!handles.pivot_exists());
			assert!(!handles.manifest_envelope_exists());
			// phase hasn't changed
			assert_eq!(
				state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}

		#[test]
		fn rejects_manifest_if_wrong_pivot_hash() {
			let TestArgs { manifest_envelope, .. } = get_test_args();

			let pivot_file = PathWrapper::from(
				"/tmp/boot_key_rejects_manifest_if_wrong_pivot_hash.pivot",
			);
			let ephemeral_file = PathWrapper::from(
				"/tmp/boot_key_rejects_manifest_if_wrong_pivot_hash.secret",
			);
			let manifest_file = PathWrapper::from(
				"/tmp/boot_key_rejects_manifest_if_wrong_pivot_hash.manifest",
			);

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				"qorum".to_string(),
				manifest_file.display().to_string(),
				pivot_file.display().to_string(),
			);
			let mut state =
				ProtocolState::new(Box::new(MockNsm), handles.clone(), None);

			// Use a different pivot then what is referenced in the manifest
			let other_pivot = b"other pivot".to_vec();
			let err =
				boot_key_forward(&mut state, &manifest_envelope, &other_pivot);
			assert!(
				matches!(err, Err(ProtocolError::InvalidPivotHash { .. })),
				"expected InvalidPivotHash error, got {err:?}"
			);

			// check that nothing was written
			assert!(!handles.pivot_exists());
			assert!(!handles.manifest_envelope_exists());
			// phase hasn't changed
			assert_eq!(
				state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}

		#[test]
		fn rejects_manifest_with_bad_approval_signature() {
			let TestArgs { mut manifest_envelope, pivot, .. } = get_test_args();

			let pivot_file = PathWrapper::from(
				"/tmp/boot_key_rejects_rejects_manifest_with_bad_approval_signature.pivot",
			);
			let ephemeral_file = PathWrapper::from(
				"/tmp/boot_key_rejects_rejects_manifest_with_bad_approval_signature.secret",
			);
			let manifest_file = PathWrapper::from(
				"/tmp/boot_key_rejects_rejects_manifest_with_bad_approval_signature.manifest",
			);

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				"quorum".to_string(),
				manifest_file.display().to_string(),
				pivot_file.display().to_string(),
			);
			let mut state =
				ProtocolState::new(Box::new(MockNsm), handles.clone(), None);

			// Change the signature to something invalid
			manifest_envelope.manifest_set_approvals[0].signature = vec![1; 32];
			let bad_approval =
				manifest_envelope.manifest_set_approvals[0].clone();

			let err = boot_key_forward(&mut state, &manifest_envelope, &pivot);
			assert_eq!(
				Err(ProtocolError::InvalidManifestApproval(bad_approval)),
				err,
			);

			// check that nothing was written
			assert!(!handles.pivot_exists());
			assert!(!handles.manifest_envelope_exists());
			// phase hasn't changed
			assert_eq!(
				state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}

		#[test]
		fn rejects_manifest_with_approval_from_non_member() {
			let TestArgs { mut manifest_envelope, pivot, .. } = get_test_args();

			let non_member_pair = P256Pair::generate().unwrap();
			let non_member = QuorumMember {
				alias: "member1".to_string(),
				pub_key: non_member_pair.public_key().to_bytes(),
			};
			let non_member_approval = Approval {
				signature: non_member_pair
					.sign(&manifest_envelope.manifest.qos_hash())
					.unwrap(),
				member: non_member,
			};

			let pivot_file = PathWrapper::from(
				"/tmp/boot_key_reject_manifest_with_approval_from_non_memberpivot",
			);
			let ephemeral_file = PathWrapper::from(
				"/tmp/boot_key_reject_manifest_with_approval_from_non_membersecret",
			);
			let manifest_file = PathWrapper::from(
				"/tmp/boot_key_reject_manifest_with_approval_from_non_membermanifest",
			);

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				"quorum".to_string(),
				manifest_file.display().to_string(),
				pivot_file.display().to_string(),
			);
			let mut state =
				ProtocolState::new(Box::new(MockNsm), handles.clone(), None);

			// Add an approval from a random key
			manifest_envelope.manifest_set_approvals.push(non_member_approval);

			let err = boot_key_forward(&mut state, &manifest_envelope, &pivot);
			assert_eq!(Err(ProtocolError::NotManifestSetMember), err,);

			// check that nothing was written
			assert!(!handles.pivot_exists());
			assert!(!handles.manifest_envelope_exists());
			// phase hasn't changed
			assert_eq!(
				state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}
	}

	mod validate_manifest {
		use super::*;
		#[test]
		fn accepts_matching_manifests() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			assert!(
				validate_manifest(
					&manifest_envelope,
					&manifest_envelope,
					&att_doc
				)
				.is_ok()
			);
		}

		#[test]
		fn accepts_manifest_with_greater_nonce() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.namespace.nonce -= 1;

			assert!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				)
				.is_ok()
			);
		}

		#[test]
		fn rejects_manifest_with_lower_nonce() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.namespace.nonce += 1;

			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::LowNonce { .. })
			));
		}

		#[test]
		fn rejects_manifest_with_matching_nonce_different_hash() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.enclave.pcr0 = vec![128; 32];

			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::DifferentManifest { .. })
			));
		}

		#[test]
		fn rejects_manifest_with_different_quorum_key() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			let different_quorum_key =
				P256Pair::generate().unwrap().public_key().to_bytes();
			old_manifest_envelope.manifest.namespace.quorum_key =
				different_quorum_key;

			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::DifferentQuorumKey { .. })
			));
		}

		#[test]
		fn does_not_accept_manifest_with_different_manifest_set() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.manifest_set.members.pop();
			old_manifest_envelope.manifest.namespace.nonce -= 1;

			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::DifferentManifestSet { .. })
			));

			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.manifest_set.threshold = 1;
			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::DifferentManifestSet { .. })
			));
		}

		#[test]
		fn accepts_manifest_with_different_ordered_manifest_set_members() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			let last_member =
				old_manifest_envelope.manifest.manifest_set.members.remove(2);
			old_manifest_envelope
				.manifest
				.manifest_set
				.members
				.insert(0, last_member);

			old_manifest_envelope.manifest.namespace.nonce -= 1;

			assert!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				)
				.is_ok(),
			);
		}

		#[test]
		fn rejects_manifest_with_different_namespace_name() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.namespace.name =
				"other namespace".to_string();

			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::DifferentNamespaceName { .. }),
			));
		}

		#[test]
		fn reject_manifest_with_different_pcr3() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut old_manifest_envelope = manifest_envelope.clone();
			old_manifest_envelope.manifest.enclave.pcr3 = vec![128; 32];
			old_manifest_envelope.manifest.namespace.nonce -= 1;

			assert!(matches!(
				validate_manifest(
					&manifest_envelope,
					&old_manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::DifferentPcr3 { .. }),
			));
		}

		#[test]
		fn errors_with_two_few_manifest_approvals() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();

			new_manifest_envelope.manifest_set_approvals.pop().unwrap();
			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::NotEnoughApprovals)
			);
		}

		#[test]
		fn rejects_manifest_with_bad_approval_signature() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();

			new_manifest_envelope.manifest_set_approvals[0].signature =
				vec![1; 32];
			let bad_approval =
				new_manifest_envelope.manifest_set_approvals[0].clone();

			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::InvalidManifestApproval(bad_approval))
			);
		}

		#[test]
		fn rejects_manifest_with_approval_from_non_member() {
			let TestArgs { manifest_envelope, att_doc, .. } = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();
			let non_member_pair = P256Pair::generate().unwrap();

			let non_member = QuorumMember {
				alias: "member1".to_string(),
				pub_key: non_member_pair.public_key().to_bytes(),
			};
			let non_member_approval = Approval {
				signature: non_member_pair
					.sign(&manifest_envelope.manifest.qos_hash())
					.unwrap(),
				member: non_member,
			};
			// Add approval from
			new_manifest_envelope
				.manifest_set_approvals
				.push(non_member_approval);

			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::NotManifestSetMember)
			);
		}
	}

	#[cfg(not(feature = "mock"))]
	mod validate_manifest_mock_disabled_tests {
		use super::*;
		#[test]
		fn errors_if_pcr0_does_match_attestation_doc() {
			let TestArgs {
				manifest_envelope,
				mut att_doc,
				members_with_keys,
				..
			} = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();
			new_manifest_envelope.manifest.namespace.nonce += 1;
			new_manifest_envelope.manifest.enclave.pcr0 = vec![128; 32];

			let new_manifest_hash = new_manifest_envelope.manifest.qos_hash();
			att_doc.user_data = Some(ByteBuf::from(new_manifest_hash));

			let manifest_set_approvals = (0..2)
				.map(|i| {
					let (pair, member) = &members_with_keys[i];
					Approval {
						signature: pair.sign(&new_manifest_hash).unwrap(),
						member: member.clone(),
					}
				})
				.collect();
			new_manifest_envelope.manifest_set_approvals =
				manifest_set_approvals;

			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::QosAttestError(
					"DifferentPcr0 { expected: \"8080808080808080808080808080808080808080808080808080808080808080\", actual: \"0404040404040404040404040404040404040404040404040404040404040404\" }".to_string()
				))
			);
		}

		#[test]
		fn errors_if_pcr1_does_match_attestation_doc() {
			let TestArgs {
				manifest_envelope,
				mut att_doc,
				members_with_keys,
				..
			} = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();
			new_manifest_envelope.manifest.namespace.nonce += 1;
			new_manifest_envelope.manifest.enclave.pcr1 = vec![128; 32];

			let new_manifest_hash = new_manifest_envelope.manifest.qos_hash();
			att_doc.user_data = Some(ByteBuf::from(new_manifest_hash));

			let manifest_set_approvals = (0..2)
				.map(|i| {
					let (pair, member) = &members_with_keys[i];
					Approval {
						signature: pair.sign(&new_manifest_hash).unwrap(),
						member: member.clone(),
					}
				})
				.collect();
			new_manifest_envelope.manifest_set_approvals =
				manifest_set_approvals;

			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::QosAttestError(
					"DifferentPcr1 { expected: \"8080808080808080808080808080808080808080808080808080808080808080\", actual: \"0303030303030303030303030303030303030303030303030303030303030303\" }".to_string()
				))
			);
		}

		#[test]
		fn errors_if_pcr2_does_match_attesation_doc() {
			let TestArgs {
				manifest_envelope,
				mut att_doc,
				members_with_keys,
				..
			} = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();
			new_manifest_envelope.manifest.namespace.nonce += 1;
			new_manifest_envelope.manifest.enclave.pcr2 = vec![128; 32];

			let new_manifest_hash = new_manifest_envelope.manifest.qos_hash();
			att_doc.user_data = Some(ByteBuf::from(new_manifest_hash));

			let manifest_set_approvals = (0..2)
				.map(|i| {
					let (pair, member) = &members_with_keys[i];
					Approval {
						signature: pair.sign(&new_manifest_hash).unwrap(),
						member: member.clone(),
					}
				})
				.collect();
			new_manifest_envelope.manifest_set_approvals =
				manifest_set_approvals;

			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::QosAttestError(
					"DifferentPcr2 { expected: \"8080808080808080808080808080808080808080808080808080808080808080\", actual: \"0202020202020202020202020202020202020202020202020202020202020202\" }".to_string()
				))
			);
		}

		#[test]
		fn errors_if_pcr3_does_match_attestation_doc() {
			let TestArgs {
				manifest_envelope,
				mut att_doc,
				members_with_keys,
				..
			} = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();
			new_manifest_envelope.manifest.namespace.nonce += 1;
			new_manifest_envelope.manifest.enclave.pcr3 = vec![128; 32];

			let new_manifest_hash = new_manifest_envelope.manifest.qos_hash();
			att_doc.user_data = Some(ByteBuf::from(new_manifest_hash));

			let manifest_set_approvals = (0..2)
				.map(|i| {
					let (pair, member) = &members_with_keys[i];
					Approval {
						signature: pair.sign(&new_manifest_hash).unwrap(),
						member: member.clone(),
					}
				})
				.collect();
			new_manifest_envelope.manifest_set_approvals =
				manifest_set_approvals;

			assert_eq!(
				validate_manifest(
					&new_manifest_envelope,
					&manifest_envelope,
					&att_doc
				),
				Err(ProtocolError::QosAttestError(
					"DifferentPcr3 { expected: \"8080808080808080808080808080808080808080808080808080808080808080\", actual: \"0101010101010101010101010101010101010101010101010101010101010101\" }".to_string()
				))
			);
		}

		#[test]
		fn errors_if_manifest_hash_does_not_match_attestation_doc() {
			let TestArgs {
				manifest_envelope, att_doc, members_with_keys, ..
			} = get_test_args();
			let mut new_manifest_envelope = manifest_envelope.clone();
			new_manifest_envelope.manifest.namespace.nonce += 1;

			let manifest_set_approvals = (0..2)
				.map(|i| {
					let (pair, member) = &members_with_keys[i];
					Approval {
						signature: pair
							.sign(&new_manifest_envelope.manifest.qos_hash())
							.unwrap(),
						member: member.clone(),
					}
				})
				.collect();
			new_manifest_envelope.manifest_set_approvals =
				manifest_set_approvals;

			// Don't update the manifest hash in the attestation doc

			let err = validate_manifest(
				&new_manifest_envelope,
				&manifest_envelope,
				&att_doc,
			);
			// The hash values are dynamically generated, so we check the error format
			assert!(
				matches!(&err, Err(ProtocolError::QosAttestError(msg)) if msg.starts_with("DifferentUserData {"))
			);
		}
	}
	mod export_key_inner {
		use super::*;
		use crate::protocol::services::key::EncryptedQuorumKey;

		#[test]
		fn works() {
			let TestArgs {
				manifest_envelope,
				att_doc,
				eph_pair,
				quorum_pair,
				..
			} = get_test_args();

			let ephemeral_file =
				PathWrapper::from("export_key_inner_works.eph.secret");
			eph_pair.to_hex_file(&*ephemeral_file).unwrap();

			let manifest_file =
				PathWrapper::from("export_key_inner_works.manifest");

			let quorum_file =
				PathWrapper::from("export_key_inner_works.quorum.secret");
			quorum_pair.to_hex_file(&*quorum_file).unwrap();

			std::fs::write(
				&*manifest_file,
				serde_json::to_vec(&manifest_envelope).unwrap(),
			)
			.unwrap();
			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				quorum_file.display().to_string(),
				manifest_file.display().to_string(),
				"pivot".to_string(),
			);

			let mut protocol_state =
				ProtocolState::new(Box::new(MockNsm), handles, None);
			let EncryptedQuorumKey { encrypted_quorum_key, signature } =
				export_key_internal(
					&mut protocol_state,
					&manifest_envelope,
					&att_doc,
				)
				.unwrap();

			// quorum key signature over payload is valid
			assert!(
				quorum_pair
					.public_key()
					.verify(&encrypted_quorum_key, &signature)
					.is_ok()
			);

			let decrypted_quorum_secret =
				eph_pair.decrypt(&encrypted_quorum_key).unwrap();
			let reconstructed_quorum_pair = P256Pair::from_master_seed(
				&decrypted_quorum_secret[..].try_into().unwrap(),
			)
			.unwrap();
			assert!(quorum_pair == reconstructed_quorum_pair);
		}
	}

	mod inject_key {

		use std::{fs, path::Path};

		use super::*;

		#[test]
		fn works() {
			let TestArgs { manifest_envelope, eph_pair, quorum_pair, .. } =
				get_test_args();

			let ephemeral_file =
				PathWrapper::from("inject_key_works.eph.secret");
			eph_pair.to_hex_file(&*ephemeral_file).unwrap();
			let manifest_file = PathWrapper::from("inject_key_works.manifest");
			let quorum_file =
				PathWrapper::from("inject_key_works.quorum.secret");
			std::fs::write(
				&*manifest_file,
				serde_json::to_vec(&manifest_envelope).unwrap(),
			)
			.unwrap();

			let encrypted_quorum_key = eph_pair
				.public_key()
				.encrypt(&quorum_pair.to_master_seed()[..])
				.unwrap();
			let signature = quorum_pair.sign(&encrypted_quorum_key).unwrap();

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				quorum_file.display().to_string(),
				manifest_file.display().to_string(),
				"pivot".to_string(),
			);
			let mut protocol_state =
				ProtocolState::new(Box::new(MockNsm), handles, None);
			protocol_state
				.transition(ProtocolPhase::WaitingForForwardedKey)
				.unwrap();

			let boot_eph_key = fs::read(&*ephemeral_file).unwrap();

			assert_eq!(
				inject_key(
					&mut protocol_state,
					EncryptedQuorumKey { encrypted_quorum_key, signature }
				),
				Ok(())
			);

			// writes the quorum key
			assert!(protocol_state.handles.quorum_key_exists());

			// Make sure the EK is persisted
			assert!(Path::new(&*ephemeral_file).exists());

			// Make sure the EK still exists, and ensure rotation happened post injection
			let new_eph_key = std::fs::read(&*ephemeral_file).unwrap();
			assert_ne!(new_eph_key, boot_eph_key);
		}

		#[test]
		fn rejects_wrong_encrypted_key() {
			let TestArgs { manifest_envelope, eph_pair, quorum_pair, .. } =
				get_test_args();

			let ephemeral_file =
				PathWrapper::from("inject_rejects_bad_signature.eph.secret");
			eph_pair.to_hex_file(&*ephemeral_file).unwrap();
			let manifest_file =
				PathWrapper::from("inject_rejects_bad_signature.manifest");
			let quorum_file =
				PathWrapper::from("inject_rejects_bad_signature.quorum.secret");
			std::fs::write(
				&*manifest_file,
				serde_json::to_vec(&manifest_envelope).unwrap(),
			)
			.unwrap();

			let wrong_key = P256Pair::generate().unwrap();
			let encrypted_quorum_key = eph_pair
				.public_key()
				.encrypt(&wrong_key.to_master_seed()[..])
				.unwrap();
			let signature = quorum_pair.sign(&encrypted_quorum_key).unwrap();

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				quorum_file.display().to_string(),
				manifest_file.display().to_string(),
				"pivot".to_string(),
			);
			let mut protocol_state =
				ProtocolState::new(Box::new(MockNsm), handles, None);

			assert_eq!(
				inject_key(
					&mut protocol_state,
					EncryptedQuorumKey { encrypted_quorum_key, signature }
				),
				Err(ProtocolError::WrongQuorumKey)
			);

			// does not write the quorum key
			assert!(!protocol_state.handles.quorum_key_exists());
			// does not change phase
			assert_eq!(
				protocol_state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}

		#[test]
		fn rejects_bad_signature() {
			let TestArgs { manifest_envelope, eph_pair, quorum_pair, .. } =
				get_test_args();

			let ephemeral_file = PathWrapper::from(
				"inject_key_rejects_wrong_quorum_key.eph.secret",
			);
			eph_pair.to_hex_file(&*ephemeral_file).unwrap();
			let manifest_file = PathWrapper::from(
				"inject_key_rejects_wrong_quorum_key.manifest",
			);
			let quorum_file = PathWrapper::from(
				"inject_key_rejects_wrong_quorum_key.quorum.secret",
			);
			std::fs::write(
				&*manifest_file,
				serde_json::to_vec(&manifest_envelope).unwrap(),
			)
			.unwrap();

			let wrong_key = P256Pair::generate().unwrap();
			let encrypted_quorum_key = eph_pair
				.public_key()
				.encrypt(&quorum_pair.to_master_seed()[..])
				.unwrap();
			let signature = wrong_key.sign(&encrypted_quorum_key).unwrap();

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				quorum_file.display().to_string(),
				manifest_file.display().to_string(),
				"pivot".to_string(),
			);
			let mut protocol_state =
				ProtocolState::new(Box::new(MockNsm), handles, None);

			assert_eq!(
				inject_key(
					&mut protocol_state,
					EncryptedQuorumKey { encrypted_quorum_key, signature }
				),
				Err(ProtocolError::InvalidEncryptedQuorumKeySignature)
			);

			// does not write the quorum key
			assert!(!protocol_state.handles.quorum_key_exists());
			// does not change phase
			assert_eq!(
				protocol_state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}

		#[test]
		fn rejects_invalid_quorum_key() {
			let TestArgs { manifest_envelope, eph_pair, quorum_pair, .. } =
				get_test_args();

			let ephemeral_file = PathWrapper::from(
				"inject_key_rejects_invalid_quorum_key.eph.secret",
			);
			eph_pair.to_hex_file(&*ephemeral_file).unwrap();
			let manifest_file = PathWrapper::from(
				"inject_key_rejects_invalid_quorum_key.manifest",
			);
			let quorum_file = PathWrapper::from(
				"inject_key_rejects_invalid_quorum_key.quorum.secret",
			);
			std::fs::write(
				&*manifest_file,
				serde_json::to_vec(&manifest_envelope).unwrap(),
			)
			.unwrap();

			let mut invalid_master_seed = quorum_pair.to_master_seed().to_vec();
			invalid_master_seed.remove(0);
			let invalid_encrypted_quorum_key =
				eph_pair.public_key().encrypt(&invalid_master_seed).unwrap();
			let signature =
				quorum_pair.sign(&invalid_encrypted_quorum_key).unwrap();

			let handles = Handles::new(
				ephemeral_file.display().to_string(),
				quorum_file.display().to_string(),
				manifest_file.display().to_string(),
				"pivot".to_string(),
			);
			let mut protocol_state =
				ProtocolState::new(Box::new(MockNsm), handles, None);

			assert_eq!(
				inject_key(
					&mut protocol_state,
					EncryptedQuorumKey {
						encrypted_quorum_key: invalid_encrypted_quorum_key,
						signature
					}
				),
				Err(ProtocolError::EncryptedQuorumKeyInvalidLen)
			);

			// does not write the quorum key
			assert!(!protocol_state.handles.quorum_key_exists());
			// does not change phase
			assert_eq!(
				protocol_state.get_phase(),
				ProtocolPhase::WaitingForBootInstruction
			);
		}
	}
}