11 references to HexConverter
System.Security.Cryptography (11)
System\Security\Cryptography\AsnFormatter.cs (2)
37hexOrder[j++] = HexConverter.ToCharUpper(digit >> 4); 38hexOrder[j++] = HexConverter.ToCharUpper(digit);
System\Security\Cryptography\Helpers.cs (2)
71HexConverter.EncodeToUtf16(bytes, chars); 114accum |= (byte)HexConverter.FromChar(c);
System\Security\Cryptography\RandomNumberGenerator.cs (6)
312HexConverter.Casing casing = lowercase ? HexConverter.Casing.Lower : HexConverter.Casing.Upper; 324HexConverter.ToCharLower(remainingRandom[0]) : 325HexConverter.ToCharUpper(remainingRandom[0]); 341HexConverter.EncodeToUtf16(remainingRandom, destination, casing);
System\Security\Cryptography\X509Certificates\X500NameEncoder.ManagedDecode.cs (1)
191HexConverter.EncodeToUtf16(state.Span, buff.Slice(1));