Symbol: tohex
regress/sbin/ifconfig/ifaddr.c
897
*p++ = (tohex((u_char)val[0]) << 4) |
regress/sbin/ifconfig/ifaddr.c
898
tohex((u_char)val[1]);
regress/sbin/iked/test_helper/test_helper.c
273
tohex(aa1, MINIMUM(l, 256)), l);
regress/sbin/iked/test_helper/test_helper.c
275
tohex(aa2, MINIMUM(l, 256)), l);
regress/sbin/iked/test_helper/test_helper.c
306
tohex(aa1, MINIMUM(l, 20)), l > 20 ? "..." : "", l);
regress/usr.bin/ssh/unittests/misc/test_misc.c
320
hex = tohex("foo", 3);
regress/usr.bin/ssh/unittests/misc/test_misc.c
326
hex = tohex("a\0b", 3);
regress/usr.bin/ssh/unittests/misc/test_misc.c
332
hex = tohex("", 0);
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
405
aa1_tohex = tohex(aa1, MINIMUM(l, 256));
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
406
aa2_tohex = tohex(aa2, MINIMUM(l, 256));
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
445
aa1_tohex = tohex(aa1, MINIMUM(l, 20));
sbin/ifconfig/ifconfig.c
1739
*p++ = (tohex((u_char)val[0]) << 4) |
sbin/ifconfig/ifconfig.c
1740
tohex((u_char)val[1]);
usr.bin/ssh/channels.c
5298
new_data = tohex(sc->x11_fake_data, data_len);
usr.bin/ssh/krl.c
1335
fp = tohex(rb->blob, rb->len);
usr.bin/ssh/krl.c
1344
fp = tohex(rb->blob, rb->len);
usr.bin/ssh/misc.h
94
char *tohex(const void *, size_t);
usr.bin/ssh/readconf.c
355
return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
usr.bin/ssh/ssh-keygen.c
3081
cp = tohex(user, slen);
usr.bin/ssh/ssh-pkcs11.c
1148
hex = tohex(d, len);
usr.bin/ssh/ssh-pkcs11.c
1164
hex = tohex(key_attr[1].pValue, key_attr[1].ulValueLen);
usr.bin/ssh/ssh-pkcs11.c
403
hex = tohex(keyid_attrib->pValue, keyid_attrib->ulValueLen);
usr.bin/ssh/ssh-pkcs11.c
416
hex = tohex(k11->keyid, k11->keyid_len);
usr.bin/ssh/sshsig.c
423
if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) {
usr.bin/ssh/sshsig.c
548
if ((hex = tohex(hash, ssh_digest_bytes(alg))) != NULL) {
usr.sbin/bgpd/logmsg.c
276
logit(LOG_INFO, " %5zu: %s", off, tohex(buf, len));