6 references to KeystreamBufferSize
System.IO.Compression (6)
System\IO\Compression\WinZipAesStream.cs (6)
36private readonly byte[] _keystreamBuffer = new byte[KeystreamBufferSize]; 37private int _keystreamOffset = KeystreamBufferSize; // Start depleted to force initial generation 279int keystreamAvailable = KeystreamBufferSize - _keystreamOffset; 283keystreamAvailable = KeystreamBufferSize; 313for (int i = 0; i < KeystreamBufferSize; i += BlockSize) 477private byte[] GetWriteWorkBuffer() => _writeWorkBuffer ??= new byte[KeystreamBufferSize];