4 references to StackAllocSize
System.Security.Cryptography (4)
System\Security\Cryptography\Base64Transforms.cs (4)
155
Span<byte> transformBuffer = stackalloc byte[
StackAllocSize
];
156
if (bytesToTransform >
StackAllocSize
)
200
Span<byte> transformBuffer = stackalloc byte[
StackAllocSize
];
202
if (bytesToTransform >
StackAllocSize
)