pub struct PlaintextFileKeyStore { /* private fields */ }Expand description
Plaintext file-based key store
WARNING: This implementation stores keys as plaintext JSON.
It wraps the existing KeyStorage implementation
for backwards compatibility.
Use only for development and testing. For production deployments,
implement a secure KeyStore backend with encryption at rest.
Implementations§
Trait Implementations§
Source§impl Debug for PlaintextFileKeyStore
impl Debug for PlaintextFileKeyStore
Source§impl Default for PlaintextFileKeyStore
impl Default for PlaintextFileKeyStore
Source§fn default() -> PlaintextFileKeyStore
fn default() -> PlaintextFileKeyStore
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PlaintextFileKeyStore
impl RefUnwindSafe for PlaintextFileKeyStore
impl Send for PlaintextFileKeyStore
impl Sync for PlaintextFileKeyStore
impl Unpin for PlaintextFileKeyStore
impl UnsafeUnpin for PlaintextFileKeyStore
impl UnwindSafe for PlaintextFileKeyStore
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more