3 writes to _salt
System.Security.Cryptography (3)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (3)
85_salt = new byte[saltSize + sizeof(uint)]; 115_salt = new byte[salt.Length + sizeof(uint)]; 150_salt = new byte[value.Length + sizeof(uint)];
10 references to _salt
System.Security.Cryptography (10)
System\Security\Cryptography\Rfc2898DeriveBytes.cs (10)
86RandomNumberGenerator.Fill(_salt.AsSpan(0, saltSize)); 116salt.CopyTo(_salt); 144return _salt.AsSpan(0, _salt.Length - sizeof(uint)).ToArray(); 151value.AsSpan().CopyTo(_salt); 168if (_salt != null) 169Array.Clear(_salt); 289BinaryPrimitives.WriteUInt32BigEndian(_salt.AsSpan(_salt.Length - sizeof(uint)), _block + 1); 298_hmac.AppendData(_salt);