[−]Enum recrypt::api::EncryptedValue
Encrypted value that is either initially encrypted or one that has been transformed one or more times
Variants
EncryptedOnceValueValue 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: Ed25519SignatureTransformedValueValue 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: Ed25519SignatureTrait Implementations
impl Clone for EncryptedValue
fn clone(&self) -> EncryptedValue
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<EncryptedValue> for EncryptedValue
fn eq(&self, other: &EncryptedValue) -> bool
fn ne(&self, other: &EncryptedValue) -> bool
impl Debug for EncryptedValue
Auto Trait Implementations
impl Send for EncryptedValue
impl Sync for EncryptedValue
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Same for T
type Output = T
Should always be Self