4 references to Pbkdf2
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
1120
return Rfc2898DeriveBytes.
Pbkdf2
(password, salt, iterationCount, prf, outputLength);
System\Security\Cryptography\Rfc2898DeriveBytes.OneShot.cs (2)
50
return
Pbkdf2
(new ReadOnlySpan<byte>(password), new ReadOnlySpan<byte>(salt), iterations, hashAlgorithm, outputLength);
200
/// and use <see cref="
Pbkdf2
(ReadOnlySpan{byte}, ReadOnlySpan{byte}, int, HashAlgorithmName, int)" />.
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
1120
return Rfc2898DeriveBytes.
Pbkdf2
(password, salt, iterationCount, prf, outputLength);