1 write to _outputBlockSize
System.Security.Cryptography (1)
System\Security\Cryptography\CryptoStream.cs (1)
70_outputBlockSize = _transform.OutputBlockSize;
5 references to _outputBlockSize
System.Security.Cryptography (5)
System\Security\Cryptography\CryptoStream.cs (5)
71_outputBuffer = new byte[_outputBlockSize]; 340int blocksToProcess = buffer.Length / _outputBlockSize; 387byte[] tempOutputBuffer = ArrayPool<byte>.Shared.Rent(numWholeReadBlocks * _outputBlockSize); 388numOutputBytes = numWholeReadBlocks * _outputBlockSize; 593byte[]? tempOutputBuffer = ArrayPool<byte>.Shared.Rent(checked(numWholeBlocks * _outputBlockSize));