3 writes to _inputIndex
System.Security.Cryptography (3)
System\Security\Cryptography\Base64Transforms.cs (3)
170
_inputIndex
= bytesToTransform;
299
_inputIndex
= bytesToTransform & 3; // bit hack for % 4
338
_inputIndex
= 0;
6 references to _inputIndex
System.Security.Cryptography (6)
System\Security\Cryptography\Base64Transforms.cs (6)
152
int bytesToTransform =
_inputIndex
+ inputBufferSpan.Length;
197
int bytesToTransform =
_inputIndex
+ inputBufferSpan.Length;
239
int index =
_inputIndex
;
300
bytesToTransform -=
_inputIndex
; // only transform up to the next multiple of 4
301
Debug.Assert(
_inputIndex
< _inputBuffer.Length);
302
transformBuffer.Slice(transformBuffer.Length -
_inputIndex
).CopyTo(_inputBuffer);