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 c6b4711 commit 84375ffCopy full SHA for 84375ff
signatory/src/key/store.rs
@@ -3,9 +3,6 @@
3
#[cfg(feature = "std")]
4
pub(crate) mod fs;
5
6
-#[cfg(feature = "std")]
7
-pub use fs::FsKeyStore;
8
-
9
/// Trait for generating PKCS#8-encoded private keys.
10
pub trait GeneratePkcs8 {
11
/// Randomly generate a new PKCS#8 private key.
signatory/src/key/store/fs.rs
@@ -141,6 +141,8 @@ mod tests {
141
142
pub const EXAMPLE_KEY: &str = "example-key";
143
144
+ /// We need this to live as long as the test case, so store it here for RAII purposes
145
+ #[allow(dead_code)]
146
pub struct FsStoreHandle {
147
pub keystore: FsKeyStore,
148
pub dir: tempfile::TempDir,
0 commit comments