@@ -7,7 +7,7 @@ use super::{
7
7
use crate :: authenticators:: ApplicationName ;
8
8
use crate :: key_info_managers:: KeyTriple ;
9
9
use crate :: key_info_managers:: { self , ManageKeyInfo } ;
10
- use log:: { error, info, warn} ;
10
+ use log:: { error, info, trace , warn} ;
11
11
use parsec_interface:: operations:: psa_key_attributes:: * ;
12
12
use parsec_interface:: operations:: {
13
13
psa_destroy_key, psa_export_public_key, psa_generate_key, psa_import_key,
@@ -116,12 +116,15 @@ impl Pkcs11Provider {
116
116
KeyPairType :: Any => ( ) ,
117
117
}
118
118
119
+ trace ! ( "FindObjectsInit command" ) ;
119
120
if let Err ( e) = self . backend . find_objects_init ( session, & template) {
120
121
format_error ! ( "Object enumeration init failed" , e) ;
121
122
Err ( utils:: to_response_status ( e) )
122
123
} else {
124
+ trace ! ( "FindObjects command" ) ;
123
125
match self . backend . find_objects ( session, 1 ) {
124
126
Ok ( objects) => {
127
+ trace ! ( "FindObjectsFinal command" ) ;
125
128
if let Err ( e) = self . backend . find_objects_final ( session) {
126
129
format_error ! ( "Object enumeration final failed" , e) ;
127
130
Err ( utils:: to_response_status ( e) )
@@ -220,6 +223,7 @@ impl Pkcs11Provider {
220
223
) ;
221
224
}
222
225
226
+ trace ! ( "GenerateKeyPair command" ) ;
223
227
match self . backend . generate_key_pair (
224
228
session. session_handle ( ) ,
225
229
& mech,
@@ -362,6 +366,7 @@ impl Pkcs11Provider {
362
366
) ;
363
367
}
364
368
369
+ trace ! ( "CreateObject command" ) ;
365
370
match self
366
371
. backend
367
372
. create_object ( session. session_handle ( ) , & template)
@@ -408,6 +413,7 @@ impl Pkcs11Provider {
408
413
size_attrs. push ( CK_ATTRIBUTE :: new ( pkcs11:: types:: CKA_PUBLIC_EXPONENT ) ) ;
409
414
410
415
// Get the length of the attributes to retrieve.
416
+ trace ! ( "GetAttributeValue command" ) ;
411
417
let ( modulus_len, public_exponent_len) =
412
418
match self
413
419
. backend
@@ -440,6 +446,7 @@ impl Pkcs11Provider {
440
446
. with_bytes ( public_exponent. as_mut_slice ( ) ) ,
441
447
) ;
442
448
449
+ trace ! ( "GetAttributeValue command" ) ;
443
450
match self
444
451
. backend
445
452
. get_attribute_value ( session. session_handle ( ) , key, & mut extract_attrs)
@@ -502,6 +509,7 @@ impl Pkcs11Provider {
502
509
503
510
match self . find_key ( session. session_handle ( ) , key_id, KeyPairType :: Any ) {
504
511
Ok ( key) => {
512
+ trace ! ( "DestroyObject command" ) ;
505
513
match self . backend . destroy_object ( session. session_handle ( ) , key) {
506
514
Ok ( _) => info ! ( "Private part of the key destroyed successfully." ) ,
507
515
Err ( e) => {
@@ -519,6 +527,7 @@ impl Pkcs11Provider {
519
527
// Second key is optional.
520
528
match self . find_key ( session. session_handle ( ) , key_id, KeyPairType :: Any ) {
521
529
Ok ( key) => {
530
+ trace ! ( "DestroyObject command" ) ;
522
531
match self . backend . destroy_object ( session. session_handle ( ) , key) {
523
532
Ok ( _) => info ! ( "Private part of the key destroyed successfully." ) ,
524
533
Err ( e) => {
0 commit comments