1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 16:53:26 +00:00

bug fixes

This commit is contained in:
Kyle Spearrin
2019-04-19 16:57:34 -04:00
parent 7548122e2d
commit ea5a411f30
2 changed files with 3 additions and 3 deletions

View File

@@ -613,9 +613,9 @@ namespace Bit.Core.Services
Buffer.BlockCopy(dataBytes, 0, macDataBytes, ivBytes.Length, dataBytes.Length);
byte[] macKey = null;
if(key.MacKey != null)
if(theKey.MacKey != null)
{
macKey = key.MacKey;
macKey = theKey.MacKey;
}
byte[] macBytes = null;
if(mac != null)