7 instantiations of CryptoStream
Microsoft.AspNetCore.DataProtection (2)
Managed\ManagedAuthenticatedEncryptor.cs (2)
248using (var cryptoStream = new CryptoStream(outputStream, cryptoTransform, CryptoStreamMode.Write)) 333using (var cryptoStream = new CryptoStream(outputStream, cryptoTransform, CryptoStreamMode.Write))
System.Security.Cryptography (2)
System\Security\Cryptography\PasswordDeriveBytes.cs (2)
233using (CryptoStream cs = new CryptoStream(Stream.Null, _hash, CryptoStreamMode.Write)) 246using (CryptoStream cs = new CryptoStream(Stream.Null, _hash, CryptoStreamMode.Write))
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\PkcsHelpers.cs (1)
457using (var cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write))
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs (2)
88_cs = new CryptoStream(ms, new FromBase64Transform(), CryptoStreamMode.Read); 116_cs = new CryptoStream(ms, new FromBase64Transform(), CryptoStreamMode.Read);
13 references to CryptoStream
Microsoft.AspNetCore.DataProtection (2)
Managed\ManagedAuthenticatedEncryptor.cs (2)
248using (var cryptoStream = new CryptoStream(outputStream, cryptoTransform, CryptoStreamMode.Write)) 333using (var cryptoStream = new CryptoStream(outputStream, cryptoTransform, CryptoStreamMode.Write))
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
867[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CryptoStream))]
netstandard (1)
netstandard.cs (1)
1858[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CryptoStream))]
System.Security.Cryptography (6)
System\Security\Cryptography\CryptoStream.cs (3)
158if (_stream is CryptoStream innerCryptoStream) 198if (GetType() != typeof(CryptoStream)) 802return GetType() != typeof(CryptoStream) ?
System\Security\Cryptography\PasswordDeriveBytes.cs (3)
233using (CryptoStream cs = new CryptoStream(Stream.Null, _hash, CryptoStreamMode.Write)) 246using (CryptoStream cs = new CryptoStream(Stream.Null, _hash, CryptoStreamMode.Write)) 260private void HashPrefix(CryptoStream cs)
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\PkcsHelpers.cs (1)
457using (var cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write))
System.Security.Cryptography.Primitives (1)
System.Security.Cryptography.Primitives.cs (1)
12[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CryptoStream))]
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs (1)
15private CryptoStream? _cs;