diff options
Diffstat (limited to 'aws')
| -rw-r--r-- | aws/kms.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ func (k *KMS) Decrypt(ciphertext string) (string, error) { return "", err } input := &kms.DecryptInput{ - CiphertextBlob: []byte(ciphertextBlob), + CiphertextBlob: ciphertextBlob, } output, err := k.Client.Decrypt(input) if err != nil { |
