4 writes to _aesSalt
System.IO.Compression (4)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
202_aesSalt = new byte[saltSize]; 210_aesSalt = null;
System\IO\Compression\ZipArchiveEntry.cs (2)
650_aesSalt = new byte[saltSize]; 658_aesSalt = null;
8 references to _aesSalt
System.IO.Compression (8)
System\IO\Compression\ZipArchiveEntry.Async.cs (5)
203await _archive.ArchiveStream.ReadExactlyAsync(_aesSalt, cancellationToken).ConfigureAwait(false); 246if (_aesSalt is null) 252aesKeys = WinZipAesStream.CreateKey(password, _aesSalt, keySizeBits); 545if (_aesSalt is null) 551WinZipAesKeyMaterial aesKeys = WinZipAesStream.CreateKey(password, _aesSalt, keySizeBits);
System\IO\Compression\ZipArchiveEntry.cs (3)
651_archive.ArchiveStream.ReadExactly(_aesSalt); 1093if (_aesSalt is null) 1099WinZipAesKeyMaterial keyMaterial = WinZipAesStream.CreateKey(password, _aesSalt, keySizeBits);