9 instantiations of CryptoStream
Mono.Cecil (4)
Mono.Cecil.Cil\PortablePdb.cs (1)
481 using (var crypto_stream = new CryptoStream (Stream.Null, sha256, CryptoStreamMode.Write)) {
Mono.Security.Cryptography\CryptoService.cs (3)
100 using (var crypto_stream = new CryptoStream (Stream.Null, sha1, CryptoStreamMode.Write)) { 139 using (var crypto_stream = new CryptoStream (Stream.Null, sha1, CryptoStreamMode.Write)) 149 using (var crypto_stream = new CryptoStream (Stream.Null, sha1, 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)
328using (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);
15 references to CryptoStream
Mono.Cecil (4)
Mono.Cecil.Cil\PortablePdb.cs (1)
481 using (var crypto_stream = new CryptoStream (Stream.Null, sha256, CryptoStreamMode.Write)) {
Mono.Security.Cryptography\CryptoService.cs (3)
100 using (var crypto_stream = new CryptoStream (Stream.Null, sha1, CryptoStreamMode.Write)) { 139 using (var crypto_stream = new CryptoStream (Stream.Null, sha1, CryptoStreamMode.Write)) 149 using (var crypto_stream = new CryptoStream (Stream.Null, sha1, CryptoStreamMode.Write)) {
mscorlib (1)
src\runtime\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)
328using (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;