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