[−][src]Enum psa_crypto::types::key::Type
Enumeration of key types supported.
Variants
Not a valid key type for any cryptographic operation but can be used to store arbitrary data in the key store.
HMAC key.
A secret key for derivation.
Key for a cipher, AEAD or MAC algorithm based on the AES block cipher.
Key for a cipher or MAC algorithm based on DES or 3DES (Triple-DES).
Key for a cipher, AEAD or MAC algorithm based on the Camellia block cipher.
Key for the RC4 stream cipher.
Key for the ChaCha20 stream cipher or the Chacha20-Poly1305 AEAD algorithm.
RSA public key.
RSA key pair: both the private and public key.
Elliptic curve key pair: both the private and public key.
Fields of EccKeyPair
curve_family: EccFamilyECC curve family to use.
Elliptic curve public key.
Fields of EccPublicKey
curve_family: EccFamilyECC curve family to use.
Diffie-Hellman key pair: both the private key and public key.
Fields of DhKeyPair
group_family: DhFamilyDiffie-Hellman group family to use.
Diffie-Hellman public key.
Fields of DhPublicKey
group_family: DhFamilyDiffie-Hellman group family to use.
Implementations
impl Type[src]
pub fn is_ecc_key_pair(self) -> bool[src]
Checks if a key type is ECC key pair with any curve family inside.
pub fn is_ecc_public_key(self) -> bool[src]
Checks if a key type is ECC public key with any curve family inside.
Example
use psa_crypto::types::key::{Type, EccFamily}; assert!(Type::EccPublicKey { curve_family: EccFamily::SecpK1}.is_ecc_public_key());
pub fn is_dh_public_key(self) -> bool[src]
Checks if a key type is DH public key with any group family inside.
pub fn is_dh_key_pair(self) -> bool[src]
Checks if a key type is DH key pair with any group family inside.
pub fn key_type_public_key_of_key_pair(self) -> Result<Type>[src]
If key is public or key pair, returns the corresponding public key type.
Trait Implementations
impl Clone for Type[src]
impl Copy for Type[src]
impl Debug for Type[src]
impl<'de> Deserialize<'de> for Type[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<Type> for Type[src]
impl Serialize for Type[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Type[src]
impl TryFrom<u16> for Type[src]
type Error = Error
The type returned in the event of a conversion error.
pub fn try_from(key_type: psa_key_type_t) -> Result<Self>[src]
impl Zeroize for Type[src]
Auto Trait Implementations
impl RefUnwindSafe for Type[src]
impl Send for Type[src]
impl Sync for Type[src]
impl Unpin for Type[src]
impl UnwindSafe for Type[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,