Home | History | Annotate | Download | only in applypatch

Lines Matching refs:hex

524 // Take a string 'str' of 40 hex digits and parse it into the 20
671 const char* hex = "0123456789abcdef";
673 putchar(hex[(sha1[i]>>4) & 0xf]);
674 putchar(hex[sha1[i] & 0xf]);