Home
last modified time | relevance | path

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

/freebsd/stand/libsa/
H A Duuid_to_string.c42 static const char *hexstr = "0123456789abcdef"; in tohex() local
47 walker[i] = hexstr[val & 0xf]; in tohex()
/freebsd/crypto/openssl/apps/
H A Dfipsinstall.c120 char *hexstr = NULL; in print_mac() local
122 hexstr = OPENSSL_buf2hexstr(mac, (long)len); in print_mac()
123 if (hexstr == NULL) in print_mac()
125 ret = BIO_printf(bio, "%s = %s\n", label, hexstr); in print_mac()
126 OPENSSL_free(hexstr); in print_mac()
H A Dts.c923 unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len); in create_verify_ctx() local
925 if (TS_VERIFY_CTX_set_imprint(ctx, hexstr, imprint_len) == NULL) { in create_verify_ctx()
/freebsd/crypto/openssl/crypto/ts/
H A Dts_verify_ctx.c71 unsigned char *hexstr, long len) in TS_VERIFY_CTX_set_imprint() argument
74 ctx->imprint = hexstr; in TS_VERIFY_CTX_set_imprint()
/freebsd/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/tests/sys/opencrypto/
H A Dpoly1305_test.c240 parse_hex(const struct poly1305_kat *kat, const char *hexstr, void *voutput, in parse_hex() argument
254 it = hexstr; in parse_hex()
/freebsd/contrib/ntp/util/
H A Dntp-keygen.c856 u_char hexstr[2 * MD5SIZE + 1]; in gen_md5() local
890 hexstr[2 * j] = hex[keystr[j] >> 4]; in gen_md5()
891 hexstr[2 * j + 1] = hex[keystr[j] & 0xf]; in gen_md5()
893 hexstr[2 * MD5SIZE] = '\0'; in gen_md5()
895 hexstr); in gen_md5()
/freebsd/contrib/one-true-awk/
H A Db.c342 int hexstr(const uschar **pp, int max) /* find and eval hex string at pp, return new p */ in hexstr() function
389 c = hexstr(&p, 2); /* this adds a null if number is invalid */ in quoted()
391 c = hexstr(&p, 8); in quoted()
H A DFIXES.1e1168 fixed silly bug in hex parsing in hexstr().
/freebsd/crypto/openssl/include/openssl/
H A Dts.h421 unsigned char *hexstr, long len);
/freebsd/sbin/ifconfig/
H A Difieee80211.c5651 int hexstr; in get_string() local
5656 hexstr = (val[0] == '0' && tolower((u_char)val[1]) == 'x'); in get_string()
5657 if (hexstr) in get_string()
5666 if (hexstr) { in get_string()
5677 if (hexstr) in get_string()
5683 if (hexstr) { in get_string()
5694 if (!hexstr && len == 1 && buf[0] == '-') { in get_string()