Home | History | Annotate | Download | only in client

Lines Matching refs:hex

390      * character (plus    a terminating null character) hex-digit 
395 * @return 32 character (plus a terminating null character) hex-digit
404 char[] hex = new char[32];
408 //convert value of top 4 bits to hex char
409 hex[i*2] = getHexChar((byte)((hash[i] & 0xf0) >> 4));
410 //convert value of bottom 4 bits to hex char
411 hex[(i*2)+1] = getHexChar((byte)(hash[i] & 0x0f));
414 return hex;
482 * @param nonceCount 8 hex digits
496 String nonceCount, /* 8 hex digits */
725 * This function returns hex character representing the value of the input
729 * @return Hex value of the Input byte value