/openssl-master/crypto/ |
A D | o_str.c | 136 const char *str, const char sep) in hexstr2buf_sep() argument 147 if (ch == sep && sep != CH_ZERO) in hexstr2buf_sep() 179 const char *str, const char sep) in OPENSSL_hexstr2buf_ex() argument 181 return hexstr2buf_sep(buf, buf_n, buflen, str, sep); in OPENSSL_hexstr2buf_ex() 185 const char sep) in ossl_hexstr2buf_sep() argument 220 const char sep) in buf2hexstr_sep() argument 226 int has_sep = (sep != CH_ZERO); in buf2hexstr_sep() 244 *q++ = sep; in buf2hexstr_sep() 258 const char sep) in OPENSSL_buf2hexstr_ex() argument 271 tmp_n = (sep != CH_ZERO) ? buflen * 3 : 1 + buflen * 2; in ossl_buf2hexstr_sep() [all …]
|
/openssl-master/test/ |
A D | hexstr_test.c | 24 const char sep; member 71 if (!TEST_ptr(buf = ossl_hexstr2buf_sep(test->in, &len, test->sep)) in test_hexstr_sep_to_from() 73 || !TEST_ptr(out = ossl_buf2hexstr_sep(buf, len, test->sep)) in test_hexstr_sep_to_from() 92 if (test->sep != '_') { in test_hexstr_to_from() 97 if (test->sep == ':') { in test_hexstr_to_from()
|
A D | filterprov.c | 171 char *name, *sep; in filter_provider_set_filter() local 187 for (name = filterstrtmp; !last; name = (sep == NULL ? NULL : sep + 1)) { in filter_provider_set_filter() 188 sep = strstr(name, ":"); in filter_provider_set_filter() 189 if (sep != NULL) in filter_provider_set_filter() 190 *sep = '\0'; in filter_provider_set_filter()
|
/openssl-master/crypto/asn1/ |
A D | asn1_lib.c | 433 const char *sep, size_t max_len) in ossl_sk_ASN1_UTF8STRING2text() argument 441 if (sep == NULL) in ossl_sk_ASN1_UTF8STRING2text() 442 sep = ""; in ossl_sk_ASN1_UTF8STRING2text() 443 sep_len = strlen(sep); in ossl_sk_ASN1_UTF8STRING2text() 461 strncpy(p, sep, sep_len + 1); /* using + 1 to silence gcc warning */ in ossl_sk_ASN1_UTF8STRING2text()
|
/openssl-master/doc/man3/ |
A D | OPENSSL_hexchar2int.pod | 16 const char *str, const char sep); 19 const unsigned char *buf, long buflen, const char sep); 29 The character I<sep> is the separator between the bytes, setting this to '\0' 47 The character I<sep> is the separator between the bytes, setting this to '\0'
|
A D | ERR_put_error.pod | 21 void ERR_add_error_txt(const char *sep, const char *txt); 22 void ERR_add_error_mem_bio(const char *sep, BIO *bio); 55 The B<sep> argument may be for instance "\n" to insert a line break when needed.
|
/openssl-master/crypto/conf/ |
A D | conf_mod.c | 546 char *file, *sep = ""; in CONF_get1_default_config_file() local 554 sep = "/"; in CONF_get1_default_config_file() 556 size = strlen(t) + strlen(sep) + strlen(OPENSSL_CONF) + 1; in CONF_get1_default_config_file() 561 BIO_snprintf(file, size, "%s%s%s", t, sep, OPENSSL_CONF); in CONF_get1_default_config_file() 573 int CONF_parse_list(const char *list_, int sep, int nospc, in CONF_parse_list() argument 591 p = strchr(lstart, sep); in CONF_parse_list()
|
/openssl-master/include/internal/ |
A D | cryptlib.h | 224 const char *sep, size_t max_len); 227 char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep); 229 const char sep);
|
/openssl-master/apps/ |
A D | speed.c | 3414 static char sep[] = ":"; in do_multi() local 3467 sstrsep(&p, sep); in do_multi() 3476 sstrsep(&p, sep); in do_multi() 3489 sstrsep(&p, sep); in do_multi() 3502 sstrsep(&p, sep); in do_multi() 3515 sstrsep(&p, sep); in do_multi() 3525 sstrsep(&p, sep); in do_multi() 3526 sstrsep(&p, sep); in do_multi() 3540 sstrsep(&p, sep); in do_multi() 3541 sstrsep(&p, sep); in do_multi() [all …]
|
A D | dgst.c | 27 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, int xoflen, 522 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, int xoflen, in do_fp() argument 597 } else if (sep == 2) { in do_fp() 620 if (sep && (i != 0)) in do_fp()
|
/openssl-master/test/testutil/ |
A D | driver.c | 436 const char *sep = "/"; in test_mk_file_path() local 438 const char *sep = ""; in test_mk_file_path() 443 size_t len = dirlen + strlen(sep) + strlen(file) + 1; in test_mk_file_path() 467 OPENSSL_strlcat(full_file, sep, len); in test_mk_file_path()
|
A D | format_output.c | 195 static void test_bignum_zero_print(const BIGNUM *bn, char sep) in test_bignum_zero_print() argument 200 test_printf_stderr("%c%*s%s\n", sep, bn_chars, v, suf); in test_bignum_zero_print()
|
/openssl-master/include/openssl/ |
A D | conf.h.in | 164 int CONF_parse_list(const char *list, int sep, int nospc,
|
A D | crypto.h.in | 130 const char sep); 133 const char *str, const char sep);
|
A D | err.h.in | 450 void ERR_add_error_mem_bio(const char *sep, BIO *bio);
|