Files
Walleby/Bitvault/KeyDeriver.cs
T
2024-04-29 21:42:04 +01:00

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);
}
}