3 writes to _salt
System.Security.Cryptography (3)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (3)
82_salt = new byte[saltSize + sizeof(uint)]; 112_salt = new byte[salt.Length + sizeof(uint)]; 147_salt = new byte[value.Length + sizeof(uint)];
10 references to _salt
System.Security.Cryptography (10)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (10)
83RandomNumberGenerator.Fill(_salt.AsSpan(0, saltSize)); 113salt.CopyTo(_salt); 141return _salt.AsSpan(0, _salt.Length - sizeof(uint)).ToArray(); 148value.AsSpan().CopyTo(_salt); 165if (_salt != null) 166Array.Clear(_salt); 286BinaryPrimitives.WriteUInt32BigEndian(_salt.AsSpan(_salt.Length - sizeof(uint)), _block + 1); 295_hmac.AppendData(_salt);