Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Pbkdf2Core() [1/2]

static void System.Security.Cryptography.Rfc2898DeriveBytes.Pbkdf2Core ( ReadOnlySpan< byte > password,
ReadOnlySpan< byte > salt,
Span< byte > destination,
int iterations,
HashAlgorithmName hashAlgorithm )
inlinestaticprivate

Definition at line 388 of file Rfc2898DeriveBytes.cs.

389 {
390 if (!destination.IsEmpty)
391 {
392 Pbkdf2Implementation.Fill(password, salt, iterations, hashAlgorithm, destination);
393 }
394 }
static void Fill(ReadOnlySpan< byte > password, ReadOnlySpan< byte > salt, int iterations, HashAlgorithmName hashAlgorithmName, Span< byte > destination)

References System.destination, and Internal.Cryptography.Pbkdf2Implementation.Fill().