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 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 {