2 references to NibbleToHex
System.Web (2)
Security\Cryptography\CryptoUtil.cs (2)
38
hex[2 * i] =
NibbleToHex
((byte)(thisByte >> 4)); // high nibble
39
hex[2 * i + 1] =
NibbleToHex
((byte)(thisByte & 0xf)); // low nibble