feat(notsecrets): Encryptor — multi-recipient age encryption

This commit is contained in:
Joseph O'Brien
2026-04-01 21:02:57 -04:00
parent b4cba74ea3
commit 9863af6b45
2 changed files with 161 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
pub mod encrypt;
pub mod error;
pub mod format;
pub mod identities;
@@ -7,6 +8,7 @@ pub mod _legacy;
pub use error::AgeError;
pub use identities::{FileKey, Header, Identity, Stanza, X25519Identity, ScryptIdentity, SshEd25519Identity, SshRsaIdentity, EncryptedIdentity};
pub use encrypt::Encryptor;
pub use recipients::{Recipient, X25519Recipient, ScryptRecipient, SshEd25519Recipient, SshRsaRecipient};
pub use sources::{BitwardenSource, FileSource, PromptSource};