CamelCase aesCBCDecrypt

This commit is contained in:
Gustav Simonsson
2015-01-21 19:08:05 +01:00
parent 1f8290ca44
commit 8af42d42da
2 changed files with 3 additions and 3 deletions

View File

@ -178,7 +178,7 @@ func DecryptKey(ks keyStorePassphrase, keyId *uuid.UUID, auth string) (keyBytes
if err != nil {
return nil, err
}
plainText, err := aes_cbc_decrypt(derivedKey, cipherText, iv)
plainText, err := aesCBCDecrypt(derivedKey, cipherText, iv)
if err != nil {
return nil, err
}