4 implementations of DeriveKey
Microsoft.AspNetCore.Cryptography.KeyDerivation (4)
PBKDF2\ManagedPbkdf2Provider.cs (1)
17public byte[] DeriveKey(string password, byte[] salt, KeyDerivationPrf prf, int iterationCount, int numBytesRequested)
PBKDF2\NetCorePbkdf2Provider.cs (1)
17public byte[] DeriveKey(string password, byte[] salt, KeyDerivationPrf prf, int iterationCount, int numBytesRequested)
PBKDF2\Win7Pbkdf2Provider.cs (1)
16public byte[] DeriveKey(string password, byte[] salt, KeyDerivationPrf prf, int iterationCount, int numBytesRequested)
PBKDF2\Win8Pbkdf2Provider.cs (1)
18public byte[] DeriveKey(string password, byte[] salt, KeyDerivationPrf prf, int iterationCount, int numBytesRequested)
1 reference to DeriveKey
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
KeyDerivation.cs (1)
41return Pbkdf2Util.Pbkdf2Provider.DeriveKey(password, salt, prf, iterationCount, numBytesRequested);