[]Enum recrypt::api_480::EncryptedValue

pub enum EncryptedValue {
    EncryptedOnceValue {
        ephemeral_public_key: PublicKey,
        encrypted_message: EncryptedMessage,
        auth_hash: AuthHash,
        public_signing_key: PublicSigningKey,
        signature: Ed25519Signature,
    },
    TransformedValue {
        ephemeral_public_key: PublicKey,
        encrypted_message: EncryptedMessage,
        auth_hash: AuthHash,
        transform_blocks: NonEmptyVec<TransformBlock>,
        public_signing_key: PublicSigningKey,
        signature: Ed25519Signature,
    },
}

Encrypted value that is either initially encrypted or one that has been transformed one or more times

Variants

EncryptedOnceValue

Value which has been encrypted, but not transformed ephemeral_public_key - public key of the ephemeral private key that was used to encrypt encrypted_message - encrypted symmetric key auth_hash - authentication hash for the Plaintext public_signing_key - public portion of Ed25519 signing key signature - Ed25519-produced signature

Fields of EncryptedOnceValue

ephemeral_public_key: PublicKeyencrypted_message: EncryptedMessageauth_hash: AuthHashpublic_signing_key: PublicSigningKeysignature: Ed25519Signature
TransformedValue

Value which has been encrypted and then transformed n times for n > 0. ephemeral_public_key - public key of the ephemeral private key that was used to encrypt encrypted_message - encrypted symmetric key auth_hash - authentication hash for the Plaintext transform_blocks - information used in transformation process. One entry for each transform. public_signing_key - public portion of Ed25519 signing key signature - Ed25519-produced signature

Fields of TransformedValue

ephemeral_public_key: PublicKeyencrypted_message: EncryptedMessageauth_hash: AuthHashtransform_blocks: NonEmptyVec<TransformBlock>public_signing_key: PublicSigningKeysignature: Ed25519Signature

Trait Implementations

impl PartialEq<EncryptedValue> for EncryptedValue

impl Clone for EncryptedValue

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EncryptedValue

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self