4 writes to _aesSalt
System.IO.Compression (4)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
188_aesSalt = new byte[saltSize]; 196_aesSalt = null;
System\IO\Compression\ZipArchiveEntry.cs (2)
636_aesSalt = new byte[saltSize]; 644_aesSalt = null;
8 references to _aesSalt
System.IO.Compression (8)
System\IO\Compression\ZipArchiveEntry.Async.cs (5)
189await _archive.ArchiveStream.ReadExactlyAsync(_aesSalt, cancellationToken).ConfigureAwait(false); 232if (_aesSalt is null) 238aesKeys = WinZipAesStream.CreateKey(password, _aesSalt, keySizeBits); 515if (_aesSalt is null) 521WinZipAesKeyMaterial aesKeys = WinZipAesStream.CreateKey(password, _aesSalt, keySizeBits);
System\IO\Compression\ZipArchiveEntry.cs (3)
637_archive.ArchiveStream.ReadExactly(_aesSalt); 1079if (_aesSalt is null) 1085WinZipAesKeyMaterial keyMaterial = WinZipAesStream.CreateKey(password, _aesSalt, keySizeBits);