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