1 write to _hash
mscorlib (1)
system\security\cryptography\passwordderivebytes.cs (1)
99_hash = (HashAlgorithm) CryptoConfig.CreateFromName(_hashName);
17 references to _hash
mscorlib (17)
system\security\cryptography\passwordderivebytes.cs (17)
190if (_hash != null) { 191_hash.Dispose(); 245_hash.Initialize(); 246_hash.TransformBlock(_password, 0, _password.Length, _password, 0); 248_hash.TransformBlock(_salt, 0, _salt.Length, _salt, 0); 249_hash.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); 250_baseValue = _hash.Hash; 251_hash.Initialize(); 254_hash.ComputeHash(_baseValue); 255_baseValue = _hash.Hash; 266_hash.Initialize(); 267cbHash = _hash.HashSize / 8; 270using (CryptoStream cs = new CryptoStream(Stream.Null, _hash, CryptoStreamMode.Write)) { 276Buffer.InternalBlockCopy(_hash.Hash, 0, rgb, ib, cbHash); 280_hash.Initialize(); 281using (CryptoStream cs = new CryptoStream(Stream.Null, _hash, CryptoStreamMode.Write)) { 287Buffer.InternalBlockCopy(_hash.Hash, 0, rgb, ib, cbHash);