8 references to _base64CharactersTable
Microsoft.Extensions.Compliance.Redaction (8)
HmacRedactor.cs (8)
134
destination[offset] =
_base64CharactersTable
[(hashToConvert[i] & 0xfc) >> 2];
135
destination[offset + 1] =
_base64CharactersTable
[((hashToConvert[i] & 0x03) << 4) | ((hashToConvert[i + 1] & 0xf0) >> 4)];
136
destination[offset + 2] =
_base64CharactersTable
[((hashToConvert[i + 1] & 0x0f) << 2) | ((hashToConvert[i + 2] & 0xc0) >> 6)];
137
destination[offset + 3] =
_base64CharactersTable
[hashToConvert[i + 2] & 0x3f];
155
destination[offset] =
_base64CharactersTable
[(hashToConvert[iterations] & 0xfc) >> 2];
156
destination[offset + 1] =
_base64CharactersTable
[(hashToConvert[iterations] & 0x03) << 4];
157
destination[offset + 2] =
_base64CharactersTable
[64];
158
destination[offset + 3] =
_base64CharactersTable
[64];