Searched refs:buf_n (Results 1 – 4 of 4) sorted by relevance
/openssl/crypto/ |
H A D | params_from_text.c | 94 *buf_n = (buf_bits + 7) / 8; in prepare_from_text() 107 *buf_n = p->data_size; in prepare_from_text() 115 *buf_n = strlen(value) + 1; in prepare_from_text() 125 *buf_n = hexdigits >> 1; in prepare_from_text() 127 *buf_n = value_n; in prepare_from_text() 142 if (buf_n > 0) { in construct_from_text() 165 size_t i = buf_n; in construct_from_text() 178 buf_n--; in construct_from_text() 195 to->data_size = buf_n; in construct_from_text() 314 size_t buf_n = 0; in OSSL_PARAM_allocate_from_text() local [all …]
|
H A D | o_str.c | 205 static int hexstr2buf_sep(unsigned char *buf, size_t buf_n, size_t *buflen, in hexstr2buf_sep() argument 232 if (cnt > buf_n) { in hexstr2buf_sep() 248 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen, in OPENSSL_hexstr2buf_ex() argument 251 return hexstr2buf_sep(buf, buf_n, buflen, str, sep); in OPENSSL_hexstr2buf_ex() 258 size_t buf_n, tmp_buflen; in ossl_hexstr2buf_sep() local 260 buf_n = strlen(str); in ossl_hexstr2buf_sep() 261 if (buf_n <= 1) { in ossl_hexstr2buf_sep() 265 buf_n /= 2; in ossl_hexstr2buf_sep() 266 if ((buf = OPENSSL_malloc(buf_n)) == NULL) in ossl_hexstr2buf_sep() 272 if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep)) { in ossl_hexstr2buf_sep()
|
/openssl/doc/man3/ |
H A D | OPENSSL_hexchar2int.pod | 15 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, long *buflen, 32 I<buf_n> gives the size of the buffer.
|
/openssl/include/openssl/ |
H A D | crypto.h.in | 142 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen,
|
Completed in 9 milliseconds