Skip to content

Commit a949474

Browse files
committed
[pkcs8] Added: Attributes field to PrivateKeyInfo
[pkcs8] Added: Tests for PrivateKeyInfo Attributes
1 parent 97dbdac commit a949474

File tree

9 files changed

+525
-34
lines changed

9 files changed

+525
-34
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

der/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-i
1414
keywords = ["asn1", "crypto", "no-alloc", "itu", "pkcs"]
1515
readme = "README.md"
1616
edition = "2024"
17-
rust-version = "1.85"
17+
rust-version = "1.87"
1818

1919
[dependencies]
2020
arbitrary = { version = "1.4", features = ["derive"], optional = true }

der/src/asn1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub use self::{
7474
};
7575

7676
#[cfg(any(feature = "alloc", feature = "heapless"))]
77-
pub use set_of::SetOfIter;
77+
pub use set_of::{SetOfIter, SetOfRef};
7878

7979
#[cfg(feature = "oid")]
8080
pub use const_oid::ObjectIdentifier;

0 commit comments

Comments
 (0)