Skip to content

Commit 7649ed5

Browse files
Merge pull request #131 from gowthamsk-arm/use_latest_psa_crypto
Use psa-crypto with updated zeroize
2 parents b2a4b66 + cac347c commit 7649ed5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ prost = "0.8.0"
2323
arbitrary = { version = "0.4.6", features = ["derive"], optional = true }
2424
uuid = "0.8.1"
2525
log = "0.4.11"
26-
psa-crypto = { version = "0.9.0", default-features = false }
26+
psa-crypto = { git = "https://github.com/parallaxsecond/rust-psa-crypto", rev = "22ebb4d8e479e1c0d853398cf8487d6389b1ed6f", default-features = false }
2727
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
2828
secrecy = { version = "0.7.0", features = ["serde"] }
2929
derivative = "2.1.1"

src/operations/list_keys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use super::psa_key_attributes::Attributes;
77
use crate::requests::ProviderId;
88

99
/// Structure holding the basic information for a key in the application for client discovery.
10-
#[derive(Debug, Clone, PartialEq)]
10+
#[derive(Debug, Clone, PartialEq, Eq)]
1111
pub struct KeyInfo {
1212
/// The ID of the associated provider.
1313
pub provider_id: ProviderId,

0 commit comments

Comments
 (0)