Struct aws_sdk_kms::output::SignOutput
source · [−]#[non_exhaustive]pub struct SignOutput {
pub key_id: Option<String>,
pub signature: Option<Blob>,
pub signing_algorithm: Option<SigningAlgorithmSpec>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_id: Option<String>The Amazon Resource Name (key ARN) of the asymmetric KMS key that was used to sign the message.
signature: Option<Blob>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, orECDSA_SHA_512signing 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 Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
signing_algorithm: Option<SigningAlgorithmSpec>The signing algorithm that was used to sign the message.
Implementations
sourceimpl SignOutput
impl SignOutput
sourcepub fn key_id(&self) -> Option<&str>
pub fn key_id(&self) -> Option<&str>
The Amazon Resource Name (key ARN) of the asymmetric KMS key that was used to sign the message.
sourcepub fn signature(&self) -> Option<&Blob>
pub fn signature(&self) -> Option<&Blob>
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, orECDSA_SHA_512signing 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 Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
sourcepub fn signing_algorithm(&self) -> Option<&SigningAlgorithmSpec>
pub fn signing_algorithm(&self) -> Option<&SigningAlgorithmSpec>
The signing algorithm that was used to sign the message.
sourceimpl SignOutput
impl SignOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SignOutput
Trait Implementations
sourceimpl Clone for SignOutput
impl Clone for SignOutput
sourcefn clone(&self) -> SignOutput
fn clone(&self) -> SignOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SignOutput
impl Debug for SignOutput
sourceimpl PartialEq<SignOutput> for SignOutput
impl PartialEq<SignOutput> for SignOutput
sourcefn eq(&self, other: &SignOutput) -> bool
fn eq(&self, other: &SignOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SignOutput) -> bool
fn ne(&self, other: &SignOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for SignOutput
Auto Trait Implementations
impl RefUnwindSafe for SignOutput
impl Send for SignOutput
impl Sync for SignOutput
impl Unpin for SignOutput
impl UnwindSafe for SignOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more