2 writes to Salt
System.Security.Cryptography (2)
src\libraries\Common\src\System\Security\Cryptography\Asn1\PBEParameter.xml.cs (2)
77
decoded.
Salt
= tmpSpan;
81
decoded.
Salt
= sequenceReader.ReadOctetString();
4 references to Salt
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\Asn1\PBEParameter.xml.cs (1)
26
writer.WriteOctetString(
Salt
);
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (3)
862
if (pbeParameters.
Salt
.Length != 8)
879
Pbkdf1(hasher, password, pbeParameters.
Salt
, iterationCount, dk);
929
ReadOnlySpan<byte> saltSpan = pbeParameters.
Salt
;