mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 03:17:42 +03:00
age: Document crate's calling contract of Identity::unwrap_stanza
Closes str4d/rage#509.
This commit is contained in:
parent
93fa28ad78
commit
d0889c90af
1 changed files with 13 additions and 0 deletions
|
@ -272,6 +272,17 @@ use age_core::{
|
|||
|
||||
/// A private key or other value that can unwrap an opaque file key from a recipient
|
||||
/// stanza.
|
||||
///
|
||||
/// # Implementation notes
|
||||
///
|
||||
/// The canonical entry point for this trait is [`Identity::unwrap_stanzas`]. The default
|
||||
/// implementation of that method is:
|
||||
/// ```ignore
|
||||
/// stanzas.iter().find_map(|stanza| self.unwrap_stanza(stanza))
|
||||
/// ```
|
||||
///
|
||||
/// The `age` crate otherwise does not call [`Identity::unwrap_stanza`] directly. As such,
|
||||
/// if you want to add file-level stanza checks, override [`Identity::unwrap_stanzas`].
|
||||
pub trait Identity {
|
||||
/// Attempts to unwrap the given stanza with this identity.
|
||||
///
|
||||
|
@ -279,6 +290,8 @@ pub trait Identity {
|
|||
/// external implementations. You should not need to call this directly; instead, pass
|
||||
/// identities to [`Decryptor::decrypt`].
|
||||
///
|
||||
/// The `age` crate only calls this method via [`Identity::unwrap_stanzas`].
|
||||
///
|
||||
/// Returns:
|
||||
/// - `Some(Ok(file_key))` on success.
|
||||
/// - `Some(Err(e))` if a decryption error occurs.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue