mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
age-plugin: Slightly improve trait documentation
This commit is contained in:
parent
2f79c8201b
commit
2eec45718c
2 changed files with 8 additions and 0 deletions
|
@ -18,6 +18,10 @@ const ADD_IDENTITY: &str = "add-identity";
|
|||
const RECIPIENT_STANZA: &str = "recipient-stanza";
|
||||
|
||||
/// The interface that age implementations will use to interact with an age plugin.
|
||||
///
|
||||
/// Implementations of this trait will be used within the [`identity-v1`] state machine.
|
||||
///
|
||||
/// [`identity-v1`]: https://c2sp.org/age-plugin#unwrapping-with-identity-v1
|
||||
pub trait IdentityPluginV1 {
|
||||
/// Stores an identity that the user would like to use for decrypting age files.
|
||||
///
|
||||
|
|
|
@ -19,6 +19,10 @@ const WRAP_FILE_KEY: &str = "wrap-file-key";
|
|||
const RECIPIENT_STANZA: &str = "recipient-stanza";
|
||||
|
||||
/// The interface that age implementations will use to interact with an age plugin.
|
||||
///
|
||||
/// Implementations of this trait will be used within the [`recipient-v1`] state machine.
|
||||
///
|
||||
/// [`recipient-v1`]: https://c2sp.org/age-plugin#wrapping-with-recipient-v1
|
||||
pub trait RecipientPluginV1 {
|
||||
/// Stores a recipient that the user would like to encrypt age files to.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue