14 lines
363 B
C#
14 lines
363 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace Bitvault;
|
|
|
|
public class KeyDeriver :
|
|
IKeyDeriver
|
|
{
|
|
public byte[] DeriveKey(string password, byte[] salt, int keySize = 32, int iterations = 100000)
|
|
{
|
|
using Rfc2898DeriveBytes pbkdf2 = new(password, salt, iterations, HashAlgorithmName.SHA256);
|
|
return pbkdf2.GetBytes(keySize);
|
|
}
|
|
}
|