pub struct QuicArgs {
pub from_kel: PathBuf,
}Expand description
auths tls-cert quic — carry the same composition over QUIC/HTTP3.
QUIC runs the same TLS 1.3 handshake inside its CRYPTO frames, so a KERI identity composes with QUIC — and therefore HTTP/3 — through exactly the same two mechanisms it composes with TLS-over-TCP: the KEL-rooted leaf the server presents, and the per-connection channel binding both endpoints export from the connection’s TLS 1.3 secrets. This stands up a real loopback QUIC connection, serves the leaf over it, and proves both — the client re-roots the served leaf in the replayed KEL, and both endpoints derive the same channel binding (a proof bound to it cannot be relayed onto a different connection).
Fields§
§from_kel: PathBufReplay this KEL and serve its KEL-rooted leaf over the QUIC handshake. The KEL is the root of trust the client re-derives by replay — over QUIC exactly as over TCP.
Trait Implementations§
Source§impl Args for QuicArgs
impl Args for QuicArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl CommandFactory for QuicArgs
impl CommandFactory for QuicArgs
Source§impl FromArgMatches for QuicArgs
impl FromArgMatches for QuicArgs
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>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.