feat(notsecrets): EncryptedIdentity stub — passphrase-protected identity file

This commit is contained in:
Joseph O'Brien
2026-04-01 20:57:22 -04:00
parent a0fe6f7128
commit 545a45b3d3
3 changed files with 42 additions and 1 deletions

View File

@@ -12,6 +12,9 @@ pub use scrypt::ScryptIdentity;
pub mod ssh_rsa;
pub use ssh_rsa::SshRsaIdentity;
pub mod encrypted;
pub use encrypted::EncryptedIdentity;
/// The symmetric file encryption key — 16 random bytes.
#[derive(Clone, Debug)]
pub struct FileKey([u8; 16]);