Struct tink_proto::RsaSsaPssPublicKey[][src]

pub struct RsaSsaPssPublicKey {
    pub version: u32,
    pub params: Option<RsaSsaPssParams>,
    pub n: Vec<u8>,
    pub e: Vec<u8>,
}

key_type: type.googleapis.com/google.crypto.tink.RsaSsaPssPublicKey

Fields

version: u32

Required.

params: Option<RsaSsaPssParams>

Required.

n: Vec<u8>

Modulus. Unsigned big integer in bigendian representation.

e: Vec<u8>

Public exponent. Unsigned big integer in bigendian representation.

Trait Implementations

impl Clone for RsaSsaPssPublicKey[src]

impl Debug for RsaSsaPssPublicKey[src]

impl Default for RsaSsaPssPublicKey[src]

impl Message for RsaSsaPssPublicKey[src]

impl PartialEq<RsaSsaPssPublicKey> for RsaSsaPssPublicKey[src]

impl StructuralPartialEq for RsaSsaPssPublicKey[src]

Auto Trait Implementations

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.