diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2019-03-22 15:04:21 -0400 |
|---|---|---|
| committer | Janusz Bialy <janusz.bialy@qlik.com> | 2019-03-23 15:04:21 -0400 |
| commit | 62390ce87ea6242ef9d1764443f4877fb4473a7a (patch) | |
| tree | 8411e158baf674f43ffc08d13c929ad1243e7167 /aws | |
| parent | ca4f7a1330c12a49c042d6eba67383a21be883c3 (diff) | |
fix spelling
Co-Authored-By: jbialy <6475833+jbialy@users.noreply.github.com>
Diffstat (limited to 'aws')
| -rw-r--r-- | aws/kms.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |
