Home
last modified time | relevance | path

Searched refs:hexstr (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/stand/libsa/
H A Duuid_to_string.c45 static const char *hexstr = "0123456789abcdef"; in tohex() local
50 walker[i] = hexstr[val & 0xf]; in tohex()
/freebsd-12.1/crypto/openssl/crypto/ts/
H A Dts_verify_ctx.c71 unsigned char *hexstr, long len) in TS_VERIFY_CTX_set_imprint() argument
73 ctx->imprint = hexstr; in TS_VERIFY_CTX_set_imprint()
/freebsd-12.1/contrib/ldns/drill/
H A Dwork.c22 hexstr2bin(char *hexstr, int len, uint8_t *buf, size_t offset, size_t buf_len) in hexstr2bin() argument
35 c = hexstr[i]; in hexstr2bin()
/freebsd-12.1/tests/sys/opencrypto/
H A Dpoly1305_test.c242 parse_hex(const struct poly1305_kat *kat, const char *hexstr, void *voutput, in parse_hex() argument
256 it = hexstr; in parse_hex()
/freebsd-12.1/contrib/one-true-awk/
H A Dproto.h46 extern int hexstr(uschar **);
H A Db.c237 int hexstr(uschar **pp) /* find and eval hex string at pp, return new p */ in hexstr() function
276 c = hexstr(&p); /* this adds a null if number is invalid */ in quoted()
H A DFIXES765 fixed silly bug in hex parsing in hexstr().
/freebsd-12.1/contrib/ntp/util/
H A Dntp-keygen.c852 u_char hexstr[2 * MD5SIZE + 1]; in gen_md5() local
886 hexstr[2 * j] = hex[keystr[j] >> 4]; in gen_md5()
887 hexstr[2 * j + 1] = hex[keystr[j] & 0xf]; in gen_md5()
889 hexstr[2 * MD5SIZE] = '\0'; in gen_md5()
891 hexstr); in gen_md5()
/freebsd-12.1/crypto/openssl/apps/
H A Dts.c894 unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len);
896 if (TS_VERIFY_CTX_set_imprint(ctx, hexstr, imprint_len) == NULL) {
/freebsd-12.1/sbin/ifconfig/
H A Difieee80211.c5521 int hexstr; in get_string() local
5526 hexstr = (val[0] == '0' && tolower((u_char)val[1]) == 'x'); in get_string()
5527 if (hexstr) in get_string()
5536 if (hexstr) { in get_string()
5547 if (hexstr) in get_string()
5553 if (hexstr) { in get_string()
5564 if (!hexstr && len == 1 && buf[0] == '-') { in get_string()
/freebsd-12.1/crypto/openssl/include/openssl/
H A Dts.h480 unsigned char *hexstr, long len);