Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 18 of 18) sorted by relevance

/openssl/crypto/
H A Do_str.c206 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 Dinfo.c111 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 Dhexstr_test.c23 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 Dfilterprov.c171 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 Devp_kdf_test.c1976 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 Dcryptlib.h158 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 Dasn1_lib.c436 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 DOPENSSL_hexchar2int.pod16 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 DERR_put_error.pod21 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 Dconf_mod.c688 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 Dspeed.c4607 static char sep[] = ":"; in do_multi() local
4668 sstrsep(&p, sep); in do_multi()
4675 sstrsep(&p, sep); in do_multi()
4693 sstrsep(&p, sep); in do_multi()
4705 sstrsep(&p, sep); in do_multi()
4716 sstrsep(&p, sep); in do_multi()
4725 sstrsep(&p, sep); in do_multi()
4726 sstrsep(&p, sep); in do_multi()
4739 sstrsep(&p, sep); in do_multi()
4740 sstrsep(&p, sep); in do_multi()
[all …]
H A Ddgst.c27 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 Ddriver.c442 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 Dformat_output.c194 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 Dconf.h.in167 int CONF_parse_list(const char *list, int sep, int nospc,
H A Dcrypto.h.in140 const char sep);
143 const char *str, const char sep);
H A Derr.h.in462 void ERR_add_error_mem_bio(const char *sep, BIO *bio);
/openssl/
H A DNEWS.md480 ### Major changes between OpenSSL 1.1.1 and OpenSSL 3.0.0 [7 sep 2021]

Completed in 71 milliseconds