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