Enum biscuit::jwa::KeyManagementAlgorithmType [] [src]

pub enum KeyManagementAlgorithmType {
    SymmetricKeyWrapping,
    AsymmetricKeyEncryption,
    DirectKeyAgreement,
    KeyAgreementWithKeyWrapping,
    DirectEncryption,
}

Describes the type of operations that the key management algorithm supports with respect to a Content Encryption Key (CEK)

Variants

Wraps a randomly generated CEK using a symmetric encryption algorithm

Encrypt a randomly generated CEK using an asymmetric encryption algorithm,

A key agreement algorithm to pick a CEK

A key agreement algorithm used to pick a symmetric CEK and wrap the CEK with a symmetric encryption algorithm

A user defined symmetric shared key is the CEK

Trait Implementations

impl Debug for KeyManagementAlgorithmType
[src]

Formats the value using the given formatter.

impl Eq for KeyManagementAlgorithmType
[src]

impl PartialEq for KeyManagementAlgorithmType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for KeyManagementAlgorithmType
[src]

impl Clone for KeyManagementAlgorithmType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more