summaryrefslogtreecommitdiff
path: root/aws
diff options
context:
space:
mode:
Diffstat (limited to 'aws')
-rw-r--r--aws/kms.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/aws/kms.go b/aws/kms.go
index cd348481..ed616c42 100644
--- a/aws/kms.go
+++ b/aws/kms.go
@@ -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 {