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
use serde_derive::Deserialize;
use enum_display_derive::Display;
use std::fmt::Display;
use super::common::{
AttributeIndex, AttributeName, AttributeValue, CertificateType, CryptographicAlgorithm, KeyCompressionType,
KeyFormatType, KeyMaterial, NameType, NameValue, ObjectType, Operation, UniqueBatchItemID, UniqueIdentifier,
};
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420040")]
pub struct KeyBlock {
#[serde(rename = "0x420042")]
pub key_format_type: KeyFormatType,
#[serde(rename = "0x420041")]
pub key_compression_type: Option<KeyCompressionType>,
#[serde(rename = "0x420045")]
pub key_value: KeyValue,
#[serde(rename = "0x420028")]
pub cryptographic_algorithm: Option<CryptographicAlgorithm>,
#[serde(rename = "0x42002A")]
pub cryptographic_length: Option<i32>,
#[serde(rename = "0x420046")]
pub key_wrapping_data: Option<()>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420045")]
pub struct KeyValue {
pub key_material: KeyMaterial,
pub attributes: Option<Vec<Attribute>>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420091")]
pub struct TemplateAttribute {
pub name: KeyMaterial,
pub attributes: Option<Vec<Attribute>>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[non_exhaustive]
pub enum ManagedObject {
#[serde(rename = "if 0x420057==0x00000001")]
Certificate(Certificate),
#[serde(rename = "if 0x420057==0x00000002")]
SymmetricKey(SymmetricKey),
#[serde(rename = "if 0x420057==0x00000003")]
PublicKey(PublicKey),
#[serde(rename = "if 0x420057==0x00000004")]
PrivateKey(PrivateKey),
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420013")]
pub struct Certificate {
pub certificate_type: CertificateType,
#[serde(with = "serde_bytes")]
pub certificate_value: Vec<u8>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42008F")]
pub struct SymmetricKey {
pub key_block: KeyBlock,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42006D")]
pub struct PublicKey {
pub key_block: KeyBlock,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420064")]
pub struct PrivateKey {
pub key_block: KeyBlock,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420053")]
pub struct Name {
pub name: NameValue,
pub r#type: NameType,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct CreateResponsePayload {
pub object_type: ObjectType,
pub unique_identifier: UniqueIdentifier,
pub object_attributes: Option<Vec<Attribute>>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct CreateKeyPairResponsePayload {
#[serde(rename = "0x420066")]
pub private_key_unique_identifier: UniqueIdentifier,
#[serde(rename = "0x42006F")]
pub public_key_unique_identifier: UniqueIdentifier,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct RegisterResponsePayload {
#[serde(rename = "0x420094")]
pub unique_identifier: UniqueIdentifier,
#[serde(rename = "0x420091")]
pub template_attributes: Option<Vec<TemplateAttribute>>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct LocateResponsePayload {
#[serde(rename = "0x420094")]
#[serde(default = "Vec::new")]
pub unique_identifiers: Vec<UniqueIdentifier>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct GetResponsePayload {
pub object_type: ObjectType,
pub unique_identifier: UniqueIdentifier,
pub cryptographic_object: ManagedObject,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct GetAttributesResponsePayload {
#[serde(rename = "0x420094")]
pub unique_identifier: UniqueIdentifier,
#[serde(rename = "0x420008")]
pub attributes: Option<Vec<Attribute>>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct GetAttributeListResponsePayload {
#[serde(rename = "0x420094")]
pub unique_identifier: UniqueIdentifier,
#[serde(rename = "0x42000A")]
pub attributes: Vec<AttributeName>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct UniqueIdentifierResponsePayload {
#[serde(rename = "0x420094")]
pub unique_identifier: UniqueIdentifier,
}
pub type ActivateResponsePayload = UniqueIdentifierResponsePayload;
pub type RevokeResponsePayload = UniqueIdentifierResponsePayload;
pub type DestroyResponsePayload = UniqueIdentifierResponsePayload;
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct AttributeEditResponsePayload {
#[serde(rename = "0x420094")]
pub unique_identifier: UniqueIdentifier,
#[serde(rename = "0x420008")]
pub attribute: Attribute,
}
pub type AddAttributeResponsePayload = AttributeEditResponsePayload;
pub type ModifyAttributeResponsePayload = AttributeEditResponsePayload;
pub type DeleteAttributeResponsePayload = AttributeEditResponsePayload;
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct QueryResponsePayload {
#[serde(rename = "0x42005C")]
pub operations: Option<Vec<Operation>>,
#[serde(rename = "0x420057")]
pub object_types: Option<Vec<ObjectType>>,
#[serde(rename = "0x42009D")]
pub vendor_identification: Option<String>,
#[serde(rename = "0x420088")]
#[serde(skip_deserializing)]
#[serde(default)]
pub server_information: Option<ServerInformation>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct RNGRetrieveResponsePayload {
#[serde(with = "serde_bytes")]
pub data: Vec<u8>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Default)]
#[serde(rename = "0x420088")]
pub struct ServerInformation;
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct DiscoverVersionsResponsePayload {
#[serde(rename = "0x420069")]
pub supported_versions: Option<Vec<ProtocolVersion>>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007C")]
pub struct SignResponsePayload {
#[serde(rename = "0x420094")]
pub unique_identifier: UniqueIdentifier,
#[serde(rename = "0x4200C3")]
#[serde(with = "serde_bytes")]
pub signature_data: Vec<u8>,
}
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420069")]
pub struct ProtocolVersion {
#[serde(rename = "0x42006A")]
pub major: i32,
#[serde(rename = "0x42006B")]
pub minor: i32,
}
#[derive(Clone, Copy, Debug, Deserialize, Display, PartialEq, Eq)]
#[non_exhaustive]
pub enum ResultStatus {
#[serde(rename = "0x00000000")]
Success,
#[serde(rename = "0x00000001")]
OperationFailed,
#[serde(rename = "0x00000002")]
OperationPending,
#[serde(rename = "0x00000003")]
OperationUndone,
}
#[derive(Clone, Copy, Debug, Deserialize, Display, PartialEq, Eq)]
#[non_exhaustive]
pub enum ResultReason {
#[serde(rename = "0x00000001")]
ItemNotFound,
#[serde(rename = "0x00000002")]
ResponseTooLarge,
#[serde(rename = "0x00000003")]
AuthenticationNotSuccessful,
#[serde(rename = "0x00000004")]
InvalidMessage,
#[serde(rename = "0x00000005")]
OperationNotSupported,
#[serde(rename = "0x00000006")]
MissingData,
#[serde(rename = "0x00000007")]
InvalidField,
#[serde(rename = "0x00000008")]
FeatureNotSupported,
#[serde(rename = "0x00000009")]
OperationCanceledByRequester,
#[serde(rename = "0x0000000A")]
CryptographicFailure,
#[serde(rename = "0x0000000B")]
IllegalOperation,
#[serde(rename = "0x0000000C")]
PermissionDenied,
#[serde(rename = "0x0000000D")]
ObjectArchived,
#[serde(rename = "0x0000000E")]
IndexOutOfBounds,
#[serde(rename = "0x0000000F")]
ApplicationNamespaceNotSupported,
#[serde(rename = "0x00000010")]
KeyFormatTypeNotSupported,
#[serde(rename = "0x00000011")]
KeyCompressionTypeNotSupported,
#[serde(rename = "0x00000100")]
GeneralFailure,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420051")]
pub struct MessageExtension {
#[serde(rename = "0x42007D")]
pub vendor_identification: String,
#[serde(rename = "0x420026")]
pub criticality_indicator: bool,
#[serde(rename = "0x42009C")]
#[serde(skip_deserializing)]
#[serde(default)]
pub vendor_extension: VendorExtension,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Default)]
#[serde(rename = "0x42009C")]
pub struct VendorExtension;
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007B")]
pub struct ResponseMessage {
#[serde(rename = "0x42007A")]
pub header: ResponseHeader,
#[serde(rename = "0x42000F")]
pub batch_items: Vec<BatchItem>,
}
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42007A")]
pub struct ResponseHeader {
#[serde(rename = "0x420069")]
pub protocol_version: ProtocolVersion,
#[serde(rename = "0x420092")]
pub timestamp: i64,
#[serde(rename = "0x42000D")]
pub batch_count: i32,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x42000F")]
pub struct BatchItem {
#[serde(rename = "0x42005C")]
pub operation: Option<Operation>,
#[serde(rename = "0x420093")]
pub unique_batch_item_id: Option<UniqueBatchItemID>,
#[serde(rename = "0x42007F")]
pub result_status: ResultStatus,
#[serde(rename = "0x42007E")]
pub result_reason: Option<ResultReason>,
#[serde(rename = "0x42007D")]
pub result_message: Option<String>,
#[serde(rename = "0x42007C")]
pub payload: Option<ResponsePayload>,
#[serde(rename = "0x420051")]
pub message_extension: Option<MessageExtension>,
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[non_exhaustive]
#[allow(clippy::large_enum_variant)]
pub enum ResponsePayload {
#[serde(rename = "if 0x42005C==0x00000001")]
Create(CreateResponsePayload),
#[serde(rename = "if 0x42005C==0x00000002")]
CreateKeyPair(CreateKeyPairResponsePayload),
#[serde(rename = "if 0x42005C==0x00000003")]
Register(RegisterResponsePayload),
#[serde(rename = "if 0x42005C==0x00000008")]
Locate(LocateResponsePayload),
#[serde(rename = "if 0x42005C==0x0000000A")]
Get(GetResponsePayload),
#[serde(rename = "if 0x42005C==0x0000000B")]
GetAttributes(GetAttributesResponsePayload),
#[serde(rename = "if 0x42005C==0x0000000C")]
GetAttributeList(GetAttributeListResponsePayload),
#[serde(rename = "if 0x42005C==0x0000000D")]
AddAttribute(AddAttributeResponsePayload),
#[serde(rename = "if 0x42005C==0x0000000E")]
ModifyAttribute(ModifyAttributeResponsePayload),
#[serde(rename = "if 0x42005C==0x0000000F")]
DeleteAttribute(DeleteAttributeResponsePayload),
#[serde(rename = "if 0x42005C==0x00000012")]
Activate(ActivateResponsePayload),
#[serde(rename = "if 0x42005C==0x00000013")]
Revoke(RevokeResponsePayload),
#[serde(rename = "if 0x42005C==0x00000014")]
Destroy(DestroyResponsePayload),
#[serde(rename = "if 0x42005C==0x00000018")]
Query(QueryResponsePayload),
#[serde(rename = "if 0x42005C==0x0000001E")]
DiscoverVersions(DiscoverVersionsResponsePayload),
#[serde(rename = "if 0x42005C==0x00000021")]
Sign(SignResponsePayload),
#[serde(rename = "if 0x42005C==0x00000025")]
RNGRetrieve(RNGRetrieveResponsePayload),
}
#[derive(Clone, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename = "0x420008")]
pub struct Attribute {
#[serde(rename = "0x42000A")]
pub name: AttributeName,
#[serde(rename = "0x420009")]
pub index: Option<AttributeIndex>,
#[serde(rename = "0x42000B")]
pub value: AttributeValue,
}