pub enum TrustProvOperation {
OemGenMasterShare {
oem_share_input_addr: u32,
oem_share_input_size: u32,
oem_enc_share_output_addr: u32,
oem_enc_share_output_size: u32,
oem_enc_master_share_output_addr: u32,
oem_enc_master_share_output_size: u32,
oem_cust_cert_puk_output_addr: u32,
oem_cust_cert_puk_output_size: u32,
},
OemSetMasterShare {
oem_share_input_addr: u32,
oem_share_input_size: u32,
oem_enc_master_share_input_addr: u32,
oem_enc_master_share_input_size: u32,
},
}Expand description
Trust provisioning operations for device security setup.
These operations handle OEM master share generation and configuration for establishing device trust relationships.
Variants§
Generate OEM master share for initial trust provisioning
Set OEM master share to complete trust provisioning
Trait Implementations§
Source§impl Clone for TrustProvOperation
impl Clone for TrustProvOperation
Source§fn clone(&self) -> TrustProvOperation
fn clone(&self) -> TrustProvOperation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandToParams for TrustProvOperation
impl CommandToParams for TrustProvOperation
Source§impl Debug for TrustProvOperation
impl Debug for TrustProvOperation
Source§impl Display for TrustProvOperation
impl Display for TrustProvOperation
Source§impl FromArgMatches for TrustProvOperation
impl FromArgMatches for TrustProvOperation
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 PartialEq for TrustProvOperation
impl PartialEq for TrustProvOperation
Source§impl Subcommand for TrustProvOperation
impl Subcommand for TrustProvOperation
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 subcommandimpl Copy for TrustProvOperation
impl Eq for TrustProvOperation
impl StructuralPartialEq for TrustProvOperation
Auto Trait Implementations§
impl Freeze for TrustProvOperation
impl RefUnwindSafe for TrustProvOperation
impl Send for TrustProvOperation
impl Sync for TrustProvOperation
impl Unpin for TrustProvOperation
impl UnwindSafe for TrustProvOperation
Blanket Implementations§
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