// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package kms import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type DecryptInput struct { _ struct{} `type:"structure"` // Ciphertext to be decrypted. The blob includes metadata. // // CiphertextBlob is automatically base64 encoded/decoded by the SDK. // // CiphertextBlob is a required field CiphertextBlob []byte `min:"1" type:"blob" required:"true"` // Specifies the encryption algorithm that will be used to decrypt the ciphertext. // Specify the same algorithm that was used to encrypt the data. If you specify // a different algorithm, the Decrypt operation fails. // // This parameter is required only when the ciphertext was encrypted under an // asymmetric CMK. The default value, SYMMETRIC_DEFAULT, represents the only // supported algorithm that is valid for symmetric CMKs. EncryptionAlgorithm EncryptionAlgorithmSpec `type:"string" enum:"true"` // Specifies the encryption context to use when decrypting the data. An encryption // context is valid only for cryptographic operations (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations) // with a symmetric CMK. The standard asymmetric encryption algorithms that // AWS KMS uses do not support an encryption context. // // An encryption context is a collection of non-secret key-value pairs that // represents additional authenticated data. When you use an encryption context // to encrypt data, you must specify the same (an exact case-sensitive match) // encryption context to decrypt the data. An encryption context is optional // when encrypting with a symmetric CMK, but it is highly recommended. // // For more information, see Encryption Context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context) // in the AWS Key Management Service Developer Guide. EncryptionContext map[string]string `type:"map"` // A list of grant tokens. // // For more information, see Grant Tokens (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token) // in the AWS Key Management Service Developer Guide. GrantTokens []string `type:"list"` // Specifies the customer master key (CMK) that AWS KMS will use to decrypt // the ciphertext. Enter a key ID of the CMK that was used to encrypt the ciphertext. // // If you specify a KeyId value, the Decrypt operation succeeds only if the // specified CMK was used to encrypt the ciphertext. // // This parameter is required only when the ciphertext was encrypted under an // asymmetric CMK. Otherwise, AWS KMS uses the metadata that it adds to the // ciphertext blob to determine which CMK was used to encrypt the ciphertext. // However, you can use this parameter to ensure that a particular CMK (of any // kind) is used to decrypt the ciphertext. // // To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias name, // or alias ARN. When using an alias name, prefix it with "alias/". // // For example: // // * Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab // // * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab // // * Alias name: alias/ExampleAlias // // * Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias // // To get the key ID and key ARN for a CMK, use ListKeys or DescribeKey. To // get the alias name and alias ARN, use ListAliases. KeyId *string `min:"1" type:"string"` } // String returns the string representation func (s DecryptInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DecryptInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DecryptInput"} if s.CiphertextBlob == nil { invalidParams.Add(aws.NewErrParamRequired("CiphertextBlob")) } if s.CiphertextBlob != nil && len(s.CiphertextBlob) < 1 { invalidParams.Add(aws.NewErrParamMinLen("CiphertextBlob", 1)) } if s.KeyId != nil && len(*s.KeyId) < 1 { invalidParams.Add(aws.NewErrParamMinLen("KeyId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type DecryptOutput struct { _ struct{} `type:"structure"` // The encryption algorithm that was used to decrypt the ciphertext. EncryptionAlgorithm EncryptionAlgorithmSpec `type:"string" enum:"true"` // The Amazon Resource Name (key ARN (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN)) // of the CMK that was used to decrypt the ciphertext. KeyId *string `min:"1" type:"string"` // Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value // is Base64-encoded. Otherwise, it is not Base64-encoded. // // Plaintext is automatically base64 encoded/decoded by the SDK. Plaintext []byte `min:"1" type:"blob" sensitive:"true"` } // String returns the string representation func (s DecryptOutput) String() string { return awsutil.Prettify(s) } const opDecrypt = "Decrypt" // DecryptRequest returns a request value for making API operation for // AWS Key Management Service. // // Decrypts ciphertext that was encrypted by a AWS KMS customer master key (CMK) // using any of the following operations: // // * Encrypt // // * GenerateDataKey // // * GenerateDataKeyPair // // * GenerateDataKeyWithoutPlaintext // // * GenerateDataKeyPairWithoutPlaintext // // You can use this operation to decrypt ciphertext that was encrypted under // a symmetric or asymmetric CMK. When the CMK is asymmetric, you must specify // the CMK and the encryption algorithm that was used to encrypt the ciphertext. // For information about symmetric and asymmetric CMKs, see Using Symmetric // and Asymmetric CMKs (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html) // in the AWS Key Management Service Developer Guide. // // The Decrypt operation also decrypts ciphertext that was encrypted outside // of AWS KMS by the public key in an AWS KMS asymmetric CMK. However, it cannot // decrypt ciphertext produced by other libraries, such as the AWS Encryption // SDK (https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/) // or Amazon S3 client-side encryption (https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html). // These libraries return a ciphertext format that is incompatible with AWS // KMS. // // If the ciphertext was encrypted under a symmetric CMK, you do not need to // specify the CMK or the encryption algorithm. AWS KMS can get this information // from metadata that it adds to the symmetric ciphertext blob. However, if // you prefer, you can specify the KeyId to ensure that a particular CMK is // used to decrypt the ciphertext. If you specify a different CMK than the one // used to encrypt the ciphertext, the Decrypt operation fails. // // Whenever possible, use key policies to give users permission to call the // Decrypt operation on a particular CMK, instead of using IAM policies. Otherwise, // you might create an IAM user policy that gives the user Decrypt permission // on all CMKs. This user could decrypt ciphertext that was encrypted by CMKs // in other accounts if the key policy for the cross-account CMK permits it. // If you must use an IAM policy for Decrypt permissions, limit the user to // particular CMKs or particular trusted accounts. // // The CMK that you use for this operation must be in a compatible key state. // For details, see How Key State Affects Use of a Customer Master Key (https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html) // in the AWS Key Management Service Developer Guide. // // // Example sending a request using DecryptRequest. // req := client.DecryptRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/Decrypt func (c *Client) DecryptRequest(input *DecryptInput) DecryptRequest { op := &aws.Operation{ Name: opDecrypt, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DecryptInput{} } req := c.newRequest(op, input, &DecryptOutput{}) return DecryptRequest{Request: req, Input: input, Copy: c.DecryptRequest} } // DecryptRequest is the request type for the // Decrypt API operation. type DecryptRequest struct { *aws.Request Input *DecryptInput Copy func(*DecryptInput) DecryptRequest } // Send marshals and sends the Decrypt API request. func (r DecryptRequest) Send(ctx context.Context) (*DecryptResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DecryptResponse{ DecryptOutput: r.Request.Data.(*DecryptOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DecryptResponse is the response type for the // Decrypt API operation. type DecryptResponse struct { *DecryptOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // Decrypt request. func (r *DecryptResponse) SDKResponseMetdata() *aws.Response { return r.response }