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 7282d98 commit b192af7Copy full SHA for b192af7
cryptoki/tests/basic.rs
@@ -1671,9 +1671,12 @@ fn sha256_digest_multipart() -> TestResult {
1671
1672
#[test]
1673
#[serial]
1674
-// Not all backends support extracting a secret key value, needed to validate this test
1675
-#[ignore]
1676
fn sha256_digest_multipart_with_key() -> TestResult {
+ // FIXME: Getting value from sensitive objects is now broken in Kryoptic: https://github.com/latchset/kryoptic/issues/193
+ if !is_softhsm() {
1677
+ return Ok(());
1678
+ }
1679
+
1680
let (pkcs11, slot) = init_pins();
1681
1682
// Open a session and log in
0 commit comments