Struct aws_sdk_kms::operation::sign::SignOutput
source · #[non_exhaustive]pub struct SignOutput {
pub key_id: Option<String>,
pub signature: Option<Blob>,
pub signing_algorithm: Option<SigningAlgorithmSpec>,
/* private fields */
}
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_512
signing algorithms, this value is a DER-encoded object as defined by ANSI 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§
source§impl 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_512
signing algorithms, this value is a DER-encoded object as defined by ANSI 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.
source§impl SignOutput
impl SignOutput
sourcepub fn builder() -> SignOutputBuilder
pub fn builder() -> SignOutputBuilder
Creates a new builder-style object to manufacture SignOutput
.
Trait Implementations§
source§impl Clone for SignOutput
impl Clone for SignOutput
source§fn clone(&self) -> SignOutput
fn clone(&self) -> SignOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SignOutput
impl Debug for SignOutput
source§impl PartialEq for SignOutput
impl PartialEq for SignOutput
source§fn eq(&self, other: &SignOutput) -> bool
fn eq(&self, other: &SignOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for SignOutput
impl RequestId for SignOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.