Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/ts/
H A Dts_verify_ctx.c97 unsigned char *hexstr, long len) in TS_VERIFY_CTX_set_imprint() argument
100 ctx->imprint = hexstr; in TS_VERIFY_CTX_set_imprint()
107 unsigned char *hexstr, long len) in TS_VERIFY_CTX_set0_imprint() argument
110 ctx->imprint = hexstr; in TS_VERIFY_CTX_set0_imprint()
/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/sys/contrib/openzfs/scripts/
H A Dconvert_wycheproof.pl234 my ($id, $name, $hexstr, $wantbits) = @_;
235 my $got = length($hexstr)/2;
/freebsd/crypto/openssl/doc/man3/
H A DTS_VERIFY_CTX.pod26 unsigned char *hexstr, long len);
34 unsigned char *hexstr, long len);
76 TS_VERIFY_CTX_set0_imprint() sets the message imprint. I<hexstr> is the
99 assigned imprint B<is freed> by this call. I<hexstr> is the string with the
127 the user passes via parameter I<bio>, I<hexstr>, I<s> or I<certs>.
/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/crypto/openssl/apps/
H A Dfipsinstall.c353 char *hexstr = NULL; in print_mac() local
355 hexstr = OPENSSL_buf2hexstr(mac, (long)len); in print_mac()
356 if (hexstr == NULL) in print_mac()
358 ret = BIO_printf(bio, "%s = %s\n", label, hexstr); in print_mac()
359 OPENSSL_free(hexstr); in print_mac()
H A Dts.c951 unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len); in create_verify_ctx() local
953 if (!TS_VERIFY_CTX_set0_imprint(ctx, hexstr, imprint_len)) { in create_verify_ctx()
/freebsd/crypto/libecc/scripts/
H A Dexpand_libecc.py1336 hexstr = format(int(bint), 'x')
1338 hexstr = ("0"*int((2*size)-len(hexstr)))+hexstr
1339 hexstr = ("0"*(len(hexstr) % 2))+hexstr
1341 for i in range(0, len(hexstr) - 1, 2):
1346 out_str += "0x"+hexstr[i:i+2]+", "
/freebsd/crypto/openssl/include/openssl/
H A Dts.h428 unsigned char *hexstr, long len);
431 unsigned char *hexstr, long len);
/freebsd/contrib/ntp/util/
H A Dntp-keygen.c871 u_char hexstr[2 * MD5SIZE + 1]; in gen_md5()
905 hexstr[2 * j] = hex[keystr[j] >> 4];
906 hexstr[2 * j + 1] = hex[keystr[j] & 0xf];
908 hexstr[2 * MD5SIZE] = '\0';
910 hexstr);
856 u_char hexstr[2 * MD5SIZE + 1]; gen_md5() local
/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
398 c = hexstr(&p, 2); /* this adds a null if number is invalid */ in quoted()
401 c = hexstr(&p, 8); in quoted()
H A DFIXES.1e1168 fixed silly bug in hex parsing in hexstr().
/freebsd/sbin/ifconfig/
H A Difieee80211.c5953 int hexstr; in get_string() local
5958 hexstr = (val[0] == '0' && tolower((u_char)val[1]) == 'x'); in get_string()
5959 if (hexstr) in get_string()
5968 if (hexstr) { in get_string()
5979 if (hexstr) in get_string()
5985 if (hexstr) { in get_string()
5996 if (!hexstr && len == 1 && buf[0] == '-') { in get_string()