AWSKMSVerifyResponse

Objective-C

@interface AWSKMSVerifyResponse

Swift

class AWSKMSVerifyResponse
  • The Amazon Resource Name (key ARN) of the asymmetric KMS key that was used to verify the signature.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable keyId;

    Swift

    var keyId: String? { get set }
  • A Boolean value that indicates whether the signature was verified. A value of True indicates that the Signature was produced by signing the Message with the specified KeyID and SigningAlgorithm. If the signature is not verified, the Verify operation fails with a KMSInvalidSignatureException exception.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable signatureValid;

    Swift

    var signatureValid: NSNumber? { get set }
  • The signing algorithm that was used to verify the signature.

    Declaration

    Objective-C

    @property (nonatomic) AWSKMSSigningAlgorithmSpec signingAlgorithm;

    Swift

    var signingAlgorithm: AWSKMSSigningAlgorithmSpec { get set }