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)
2 references to DeriveKey
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
KeyDerivation.cs (1)
41return Pbkdf2Util.Pbkdf2Provider.DeriveKey(password, salt, prf, iterationCount, numBytesRequested);
Microsoft.AspNetCore.Cryptography.KeyDerivation.Tests (1)
Pbkdf2Tests.cs (1)
204byte[] derivedKey = new TProvider().DeriveKey(password, salt, prf, iterationCount, numBytesRequested);