1 write to _randomBuffer
WindowsBase (1)
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (1)
890
_randomBuffer
= new byte[Math.Max(16, count)]; // current block size is 16
4 references to _randomBuffer
WindowsBase (4)
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (4)
889
if (
_randomBuffer
== null || (
_randomBuffer
.Length < count))
892
_random.NextBytes(
_randomBuffer
);
894
Array.Copy(
_randomBuffer
, 0, buffer, offset, count);