summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2019-03-22 15:04:21 -0400
committerJanusz Bialy <janusz.bialy@qlik.com>2019-03-23 15:04:21 -0400
commit62390ce87ea6242ef9d1764443f4877fb4473a7a (patch)
tree8411e158baf674f43ffc08d13c929ad1243e7167
parentca4f7a1330c12a49c042d6eba67383a21be883c3 (diff)
fix spelling
Co-Authored-By: jbialy <6475833+jbialy@users.noreply.github.com>
-rw-r--r--aws/kms.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/aws/kms.go b/aws/kms.go
index 67a5b44b..cd348481 100644
--- a/aws/kms.go
+++ b/aws/kms.go
@@ -43,7 +43,7 @@ func (k *KMS) Encrypt(keyID, plaintext string) (string, error) {
return ciphertext, nil
}
-// Decrypt a base64 encoded cyphertext
+// Decrypt a base64 encoded ciphertext
func (k *KMS) Decrypt(ciphertext string) (string, error) {
ciphertextBlob, err := b64.Decode(ciphertext)
if err != nil {