7 references to CryptoStream
Microsoft.AspNetCore.DataProtection (2)
Managed\ManagedAuthenticatedEncryptor.cs (2)
248
using (var cryptoStream = new
CryptoStream
(outputStream, cryptoTransform, CryptoStreamMode.Write))
333
using (var cryptoStream = new
CryptoStream
(outputStream, cryptoTransform, CryptoStreamMode.Write))
System.Security.Cryptography (2)
System\Security\Cryptography\PasswordDeriveBytes.cs (2)
233
using (CryptoStream cs = new
CryptoStream
(Stream.Null, _hash, CryptoStreamMode.Write))
246
using (CryptoStream cs = new
CryptoStream
(Stream.Null, _hash, CryptoStreamMode.Write))
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\PkcsHelpers.cs (1)
457
using (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);