Searched refs:tohex (Results 1 – 12 of 12) sorted by relevance
| /src/stand/libsa/ |
| H A D | uuid_to_string.c | 40 tohex(char **buf, int len, uint32_t val) in tohex() function 91 tohex(&w, 8, u->time_low); in uuid_to_string() 93 tohex(&w, 4, u->time_mid); in uuid_to_string() 95 tohex(&w, 4, u->time_hi_and_version); in uuid_to_string() 98 tohex(&w, 2, u->clock_seq_hi_and_reserved); in uuid_to_string() 99 tohex(&w, 2, u->clock_seq_low); in uuid_to_string() 101 tohex(&w, 2, u->node[0]); in uuid_to_string() 102 tohex(&w, 2, u->node[1]); in uuid_to_string() 103 tohex(&w, 2, u->node[2]); in uuid_to_string() 104 tohex(&w, 2, u->node[3]); in uuid_to_string() [all …]
|
| /src/crypto/openssh/regress/unittests/test_helper/ |
| H A D | test_helper.c | 386 tohex(const void *_s, size_t l) in tohex() function 419 aa1_tohex = tohex(aa1, MINIMUM(l, 256)); in assert_mem() 420 aa2_tohex = tohex(aa2, MINIMUM(l, 256)); in assert_mem() 459 aa1_tohex = tohex(aa1, MINIMUM(l, 20)); in assert_mem_filled()
|
| /src/crypto/openssh/ |
| H A D | misc.h | 90 char *tohex(const void *, size_t);
|
| H A D | sshsig.c | 425 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) { in hash_buffer() 550 if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) { in hash_file()
|
| H A D | krl.c | 1337 fp = tohex(rb->blob, rb->len); in krl_dump() 1346 fp = tohex(rb->blob, rb->len); in krl_dump()
|
| H A D | ssh_namespace.h | 997 #define tohex Fssh_tohex macro
|
| H A D | misc.c | 1554 tohex(const void *vp, size_t l) in tohex() function
|
| H A D | ssh-keygen.c | 3191 cp = tohex(user, slen); in sk_suffix()
|
| H A D | readconf.c | 372 return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in ssh_connection_hash()
|
| H A D | channels.c | 5329 new_data = tohex(sc->x11_fake_data, data_len); in x11_request_forwarding_with_spoofing()
|
| /src/contrib/libarchive/libarchive/ |
| H A D | archive_read_support_format_tar.c | 234 static int tohex(int c); 3692 int digit1 = tohex(s[1]); in url_decode() 3693 int digit2 = tohex(s[2]); in url_decode() 3712 tohex(int c) in tohex() function
|
| /src/sbin/ifconfig/ |
| H A D | ifieee80211.c | 5986 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro 5987 *p++ = (tohex((u_char)val[0]) << 4) | in get_string() 5988 tohex((u_char)val[1]); in get_string() 5989 #undef tohex in get_string()
|