[][src]Struct tink_proto::EciesAeadHkdfPublicKey

pub struct EciesAeadHkdfPublicKey {
    pub version: u32,
    pub params: Option<EciesAeadHkdfParams>,
    pub x: Vec<u8>,
    pub y: Vec<u8>,
}

EciesAeadHkdfPublicKey represents HybridEncryption primitive. key_type: type.googleapis.com/google.crypto.tink.EciesAeadHkdfPublicKey

Fields

version: u32

Required.

params: Option<EciesAeadHkdfParams>

Required.

x: Vec<u8>

Affine coordinates of the public key in bigendian representation. The public key is a point (x, y) on the curve defined by params.kem_params.curve. Required.

y: Vec<u8>

Required.

Trait Implementations

impl Clone for EciesAeadHkdfPublicKey[src]

impl Debug for EciesAeadHkdfPublicKey[src]

impl Default for EciesAeadHkdfPublicKey[src]

impl Message for EciesAeadHkdfPublicKey[src]

impl PartialEq<EciesAeadHkdfPublicKey> for EciesAeadHkdfPublicKey[src]

impl StructuralPartialEq for EciesAeadHkdfPublicKey[src]

Auto Trait Implementations

impl RefUnwindSafe for EciesAeadHkdfPublicKey

impl Send for EciesAeadHkdfPublicKey

impl Sync for EciesAeadHkdfPublicKey

impl Unpin for EciesAeadHkdfPublicKey

impl UnwindSafe for EciesAeadHkdfPublicKey

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.