search for: tohexstr

Displaying 2 results from an estimated 2 matches for "tohexstr".

Did you mean: utohexstr
2006 Aug 16
2
File download logging
Is there any way of determining whether a file has been successfully downloaded by a user or to put it another way, whether a dowload was interrupted? -- Posted via http://www.ruby-forum.com/.
2008 Sep 11
3
ZFS Crypto [Prelim] Codereview
...But, to be more paranoid, perhaps line 147 should be changed to never return 0 as a safety net: 147 return (ret); That is to, say, something like: 147 return (ret != 0 ? ret : -1); ------------------------------------------------------------------ usr/src/lib/libcryptoutil/common/tohexstr.c hex_to_bytes() Given this new code: 90 if ((ch >= ''0'') && (ch <= ''9'')) 91 ch -= ''0''; 92 else if ((ch >= ''A'') && (ch <= ''F'...