pub enum TlsCertAction {
Issue(IssueArgs),
Identity(IdentityArgs),
Verify(VerifyArgs),
Quic(QuicArgs),
}Expand description
The directions of KEL-rooted mTLS composition.
Variants§
Issue(IssueArgs)
Issue a KEL-rooted leaf certificate for an AID (us → peer).
Identity(IdentityArgs)
Read the did:keri AID out of a leaf’s subjectAltName (X.509-SVID identity).
Verify(VerifyArgs)
Verify a peer’s leaf binds to the KEL we hold (peer → us).
Quic(QuicArgs)
Carry the KEL-rooted leaf + channel binding over a QUIC/HTTP3 transport.
Trait Implementations§
Source§impl Clone for TlsCertAction
impl Clone for TlsCertAction
Source§fn clone(&self) -> TlsCertAction
fn clone(&self) -> TlsCertAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TlsCertAction
impl Debug for TlsCertAction
Source§impl FromArgMatches for TlsCertAction
impl FromArgMatches for TlsCertAction
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for TlsCertAction
impl Subcommand for TlsCertAction
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for TlsCertAction
impl RefUnwindSafe for TlsCertAction
impl Send for TlsCertAction
impl Sync for TlsCertAction
impl Unpin for TlsCertAction
impl UnsafeUnpin for TlsCertAction
impl UnwindSafe for TlsCertAction
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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