7 references to HexConverter
System.Net.Security (7)
src\libraries\Common\src\System\Net\IPv4AddressHelper.Common.cs (1)
257int digitValue = HexConverter.FromChar(ch);
src\libraries\Common\src\System\Net\IPv6AddressHelper.Common.cs (3)
141if (HexConverter.IsHexChar(currentCh)) 202if (!HexConverter.IsHexChar(ch)) 423int characterValue = HexConverter.FromChar(currentCh);
src\libraries\Common\src\System\Net\Security\SslKeyLogger.cs (1)
130HexConverter.ToBytesBuffer(source[i], destination.Slice(i * 2));
System\Net\Security\SslApplicationProtocol.cs (2)
99byteChars[i + 2] = HexConverter.ToCharLower(b >> 4); 100byteChars[i + 3] = HexConverter.ToCharLower(b);