Enum parsec_interface::requests::Opcode [−][src]
#[repr(u32)]
pub enum Opcode {
Show 24 variants
Ping,
PsaGenerateKey,
PsaDestroyKey,
PsaSignHash,
PsaVerifyHash,
PsaImportKey,
PsaExportPublicKey,
ListProviders,
ListOpcodes,
PsaAsymmetricEncrypt,
PsaAsymmetricDecrypt,
PsaExportKey,
PsaGenerateRandom,
ListAuthenticators,
PsaHashCompute,
PsaHashCompare,
PsaAeadEncrypt,
PsaAeadDecrypt,
PsaRawKeyAgreement,
PsaSignMessage,
PsaVerifyMessage,
ListKeys,
ListClients,
DeleteClient,
}Expand description
Listing of available operations and their associated opcode.
Passed in headers as opcode. Check the
Operations
page of the book for more information.
Variants
Ping operation
PsaGenerateKey operation
PsaDestroyKey operation
PsaSignHash operation
PsaVerifyHash operation
PsaImportKey operation
PsaExportPublicKey operation
ListProviders operation
ListOpcodes operation
PsaAsymmetricEncrypt operation
PsaAsymmetricDecrypt operation
PsaExportKey operation
PsaGenerateRandom operation
ListAuthenticators operation
PsaHashCompute operation
PsaHashCompare operation
PsaAeadEncrypt
PsaAeadDecrypt
PsaRawKeyAgreement operation
PsaSignMessage operation
PsaVerifyMessage operation
ListKeys operation
ListClients operation (admin operation)
DeleteClient operation (admin operation)
Implementations
Trait Implementations
Converts an i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts a usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts an u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Converts a f32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
Auto Trait Implementations
impl RefUnwindSafe for Opcode
impl UnwindSafe for Opcode
Blanket Implementations
Mutably borrows from an owned value. Read more