Searched refs:buf_n (Results 1 – 4 of 4) sorted by relevance
/openssl-master/crypto/ |
A D | params_from_text.c | 76 *buf_n = (buf_bits + 7) / 8; in prepare_from_text() 91 *buf_n = p->data_size; in prepare_from_text() 99 *buf_n = strlen(value) + 1; in prepare_from_text() 105 *buf_n = value_n; in prepare_from_text() 120 if (buf_n > 0) { in construct_from_text() 143 size_t i = buf_n; in construct_from_text() 153 strncpy(buf, value, buf_n); in construct_from_text() 156 buf_n--; in construct_from_text() 173 to->data_size = buf_n; in construct_from_text() 187 size_t buf_n = 0; in OSSL_PARAM_allocate_from_text() local [all …]
|
A D | o_str.c | 135 static int hexstr2buf_sep(unsigned char *buf, size_t buf_n, size_t *buflen, in hexstr2buf_sep() argument 162 if (cnt > buf_n) { in hexstr2buf_sep() 178 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen, in OPENSSL_hexstr2buf_ex() argument 181 return hexstr2buf_sep(buf, buf_n, buflen, str, sep); in OPENSSL_hexstr2buf_ex() 188 size_t buf_n, tmp_buflen; in ossl_hexstr2buf_sep() local 190 buf_n = strlen(str); in ossl_hexstr2buf_sep() 191 if (buf_n <= 1) { in ossl_hexstr2buf_sep() 195 buf_n /= 2; in ossl_hexstr2buf_sep() 196 if ((buf = OPENSSL_malloc(buf_n)) == NULL) { in ossl_hexstr2buf_sep() 204 if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep)) { in ossl_hexstr2buf_sep()
|
/openssl-master/doc/man3/ |
A D | OPENSSL_hexchar2int.pod | 15 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, long *buflen, 31 I<buf_n> gives the size of the buffer.
|
/openssl-master/include/openssl/ |
A D | crypto.h.in | 132 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen,
|
Completed in 8 milliseconds