We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 728b7ac commit 0a02b5dCopy full SHA for 0a02b5d
cryptoki/tests/basic.rs
@@ -798,6 +798,8 @@ fn derive_key_concatenation_two_keys() -> TestResult {
798
Attribute::KeyType(KeyType::GENERIC_SECRET),
799
Attribute::Value(key_value[..3].to_vec()),
800
Attribute::Derive(true),
801
+ Attribute::Sensitive(false),
802
+ Attribute::Extractable(true),
803
];
804
let key2_template = [
805
Attribute::Token(true),
@@ -806,6 +808,8 @@ fn derive_key_concatenation_two_keys() -> TestResult {
806
808
807
809
Attribute::Value(key_value[3..].to_vec()),
810
811
812
813
814
815
let key1 = session.create_object(&key1_template)?;
0 commit comments