summaryrefslogtreecommitdiff
path: root/aws
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2019-05-02 22:25:54 -0700
committerDave Henderson <dhenderson@gmail.com>2019-05-02 22:28:30 -0700
commit2be2c1168085e0234a0cf06dab93b6d763bf3f7d (patch)
tree8debeb071f9f246785817c97480edceaba1f4cd5 /aws
parentb65e14e1fda1c005a07ec9b98e746ce3d699521a (diff)
Linting more (and fixing more)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
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 {