/openssl/crypto/ |
H A D | o_str.c | 206 const char *str, const char sep) in hexstr2buf_sep() argument 217 if (ch == sep && sep != CH_ZERO) in hexstr2buf_sep() 249 const char *str, const char sep) in OPENSSL_hexstr2buf_ex() argument 251 return hexstr2buf_sep(buf, buf_n, buflen, str, sep); in OPENSSL_hexstr2buf_ex() 255 const char sep) in ossl_hexstr2buf_sep() argument 288 const char sep) in buf2hexstr_sep() argument 291 int has_sep = (sep != CH_ZERO); in buf2hexstr_sep() 310 *q++ = sep; in buf2hexstr_sep() 324 const char sep) in OPENSSL_buf2hexstr_ex() argument 337 tmp_n = (sep != CH_ZERO) ? buflen * 3 : 1 + buflen * 2; in ossl_buf2hexstr_sep() [all …]
|
H A D | info.c | 111 char sep = '='; in DEFINE_RUN_ONCE_STATIC() 121 "%c%s", sep, RISCV_capabilities[i].name); in DEFINE_RUN_ONCE_STATIC() 123 sep = '_'; in DEFINE_RUN_ONCE_STATIC() 127 if (sep == '=') { in DEFINE_RUN_ONCE_STATIC() 130 "%c", sep); in DEFINE_RUN_ONCE_STATIC()
|
/openssl/test/ |
H A D | hexstr_test.c | 23 const char sep; member 70 if (!TEST_ptr(buf = ossl_hexstr2buf_sep(test->in, &len, test->sep)) in test_hexstr_sep_to_from() 72 || !TEST_ptr(out = ossl_buf2hexstr_sep(buf, len, test->sep)) in test_hexstr_sep_to_from() 91 if (test->sep != '_') { in test_hexstr_to_from() 96 if (test->sep == ':') { in test_hexstr_to_from()
|
H 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()
|
H A D | evp_kdf_test.c | 1976 int l = 0, sep = 0, r = 8; in test_kbkdf_mac_change() local 2010 *p++ = OSSL_PARAM_construct_int(OSSL_KDF_PARAM_KBKDF_USE_SEPARATOR, &sep); in test_kbkdf_mac_change()
|
/openssl/include/internal/ |
H A D | cryptlib.h | 158 const char *sep, size_t max_len); 161 char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep); 163 const char sep);
|
/openssl/crypto/asn1/ |
H A D | asn1_lib.c | 436 const char *sep, size_t max_len) in ossl_sk_ASN1_UTF8STRING2text() argument 444 if (sep == NULL) in ossl_sk_ASN1_UTF8STRING2text() 445 sep = ""; in ossl_sk_ASN1_UTF8STRING2text() 446 sep_len = strlen(sep); in ossl_sk_ASN1_UTF8STRING2text() 464 strncpy(p, sep, sep_len + 1); /* using + 1 to silence gcc warning */ in ossl_sk_ASN1_UTF8STRING2text()
|
/openssl/doc/man3/ |
H A D | OPENSSL_hexchar2int.pod | 16 const char *str, const char sep); 20 const char sep); 30 The character I<sep> is the separator between the bytes, setting this to '\0' 48 The character I<sep> is the separator between the bytes, setting this to '\0'
|
H 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); 57 The B<sep> argument may be for instance "\n" to insert a line break when needed.
|
/openssl/crypto/conf/ |
H A D | conf_mod.c | 688 char *file, *sep = ""; in CONF_get1_default_config_file() local 708 sep = "/"; in CONF_get1_default_config_file() 710 size = strlen(t) + strlen(sep) + strlen(OPENSSL_CONF) + 1; in CONF_get1_default_config_file() 715 BIO_snprintf(file, size, "%s%s%s", t, sep, OPENSSL_CONF); in CONF_get1_default_config_file() 727 int CONF_parse_list(const char *list_, int sep, int nospc, in CONF_parse_list() argument 745 p = strchr(lstart, sep); in CONF_parse_list()
|
/openssl/apps/ |
H A D | speed.c | 4846 static char sep[] = ":"; in do_multi() local 4907 sstrsep(&p, sep); in do_multi() 4914 sstrsep(&p, sep); in do_multi() 4932 sstrsep(&p, sep); in do_multi() 4944 sstrsep(&p, sep); in do_multi() 4955 sstrsep(&p, sep); in do_multi() 4964 sstrsep(&p, sep); in do_multi() 4965 sstrsep(&p, sep); in do_multi() 4978 sstrsep(&p, sep); in do_multi() 4979 sstrsep(&p, sep); in do_multi() [all …]
|
H A D | dgst.c | 27 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, int xoflen, 548 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, int xoflen, in do_fp() argument 623 } else if (sep == 2) { in do_fp() 646 if (sep && (i != 0)) in do_fp()
|
/openssl/test/testutil/ |
H A D | driver.c | 442 const char *sep = "/"; in test_mk_file_path() local 444 const char *sep = ""; in test_mk_file_path() 449 size_t len = dirlen + strlen(sep) + strlen(file) + 1; in test_mk_file_path() 473 OPENSSL_strlcat(full_file, sep, len); in test_mk_file_path()
|
H A D | format_output.c | 194 static void test_bignum_zero_print(const BIGNUM *bn, char sep) in test_bignum_zero_print() argument 199 test_printf_stderr("%c%*s%s\n", sep, bn_chars, v, suf); in test_bignum_zero_print()
|
/openssl/include/openssl/ |
H A D | conf.h.in | 167 int CONF_parse_list(const char *list, int sep, int nospc,
|
H A D | crypto.h.in | 140 const char sep); 143 const char *str, const char sep);
|
H A D | err.h.in | 462 void ERR_add_error_mem_bio(const char *sep, BIO *bio);
|
/openssl/ |
H A D | NEWS.md | 498 ### Major changes between OpenSSL 1.1.1 and OpenSSL 3.0.0 [7 sep 2021]
|