WIP saving

This commit is contained in:
bg45
2017-09-21 03:11:00 -04:00
parent c4ac244270
commit baba70e56d
6 changed files with 46 additions and 48 deletions

View File

@@ -95,7 +95,6 @@ namespace ModernKeePassLib.Cryptography.Cipher
private static Stream CreateStream(Stream s, bool bEncrypt, byte[] pbKey, byte[] pbIV)
{
StandardAesEngine.ValidateArguments(s, bEncrypt, pbKey, pbIV);
return new CryptoStream( s, "AES_CBC_PKCS7", bEncrypt, pbKey, pbIV);
}