deprecate mac checks on RSA decrypt

This commit is contained in:
Kyle Spearrin 2018-11-26 16:05:30 -05:00
parent 5792372a47
commit 7ff628ea51
1 changed files with 0 additions and 9 deletions

View File

@ -400,15 +400,6 @@ namespace Bit.App.Services
throw new ArgumentNullException(nameof(privateKey));
}
if(EncKey?.MacKey != null && !string.IsNullOrWhiteSpace(encyptedValue.Mac))
{
var computedMacBytes = Crypto.ComputeMac(encyptedValue.CipherTextBytes, EncKey.MacKey);
if(!Crypto.MacsEqual(computedMacBytes, encyptedValue.MacBytes))
{
throw new InvalidOperationException("MAC failed.");
}
}
IAsymmetricKeyAlgorithmProvider provider = null;
switch(encyptedValue.EncryptionType)
{