1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00
This commit is contained in:
Kyle Spearrin
2020-02-12 09:40:16 -05:00
parent 1fb3698ba2
commit 558b10499b

View File

@@ -786,7 +786,7 @@ namespace Bit.Core.Services
var okm = new byte[size];
var previousT = new byte[0];
var n = (int)Math.Ceiling((double)size / hashLen);
for(int i = 0; i < n; i++)
for(var i = 0; i < n; i++)
{
var t = new byte[previousT.Length + info.Length + 1];
previousT.CopyTo(t, 0);