This commit is contained in:
Kyle Spearrin 2023-01-19 17:24:21 -05:00
parent c4a7aab590
commit 270bf114c3
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace Bit.iOS.Core.Services
public byte[] Argon2id(byte[] password, byte[] salt, int iterations, int memory, int parallelism)
{
// TODO: Do we need to pass this in somehow like PBKDF2 based on an algorithm
// TODO: Do we need to pass this in somehow like PBKDF2, based on an algorithm?
uint keySize = 32;
var keyData = new NSMutableData();
keyData.Length = keySize;