[][src]Struct rusoto_kms::SignResponse

pub struct SignResponse {
    pub key_id: Option<String>,
    pub signature: Option<Bytes>,
    pub signing_algorithm: Option<String>,
}

Fields

key_id: Option<String>

The Amazon Resource Name (key ARN) of the asymmetric CMK that was used to sign the message.

signature: Option<Bytes>

The cryptographic signature that was generated for the message.

  • When used with the supported RSA signing algorithms, the encoding of this value is defined by PKCS #1 in RFC 8017.

  • When used with the ECDSA_SHA_256, ECDSA_SHA_384, or ECDSA_SHA_512 signing algorithms, this value is a DER-encoded object as defined by ANS X9.62–2005 and RFC 3279 Section 2.2.3. This is the most commonly used signature format and is appropriate for most uses.

When you use the HTTP API or the AWS CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.

signing_algorithm: Option<String>

The signing algorithm that was used to sign the message.

Trait Implementations

impl Clone for SignResponse[src]

impl Debug for SignResponse[src]

impl Default for SignResponse[src]

impl<'de> Deserialize<'de> for SignResponse[src]

impl PartialEq<SignResponse> for SignResponse[src]

impl StructuralPartialEq for SignResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.