| /include/openssl/ |
| A D | buffer.h | 35 # define BUF_strndup(s, size) OPENSSL_strndup(s, size) argument 36 # define BUF_memdup(data, size) OPENSSL_memdup(data, size) argument 37 # define BUF_strlcpy(dst, src, size) OPENSSL_strlcpy(dst, src, size) argument 38 # define BUF_strlcat(dst, src, size) OPENSSL_strlcat(dst, src, size) argument
|
| A D | crypto.h.in | 106 # define OPENSSL_malloc_array(num, size) \ argument 107 CRYPTO_malloc_array(num, size, OPENSSL_FILE, OPENSSL_LINE) 108 # define OPENSSL_calloc(num, size) \ argument 109 CRYPTO_calloc(num, size, OPENSSL_FILE, OPENSSL_LINE) 114 CRYPTO_aligned_alloc_array(num, size, alignment, freeptr, \ 120 # define OPENSSL_realloc_array(addr, num, size) \ argument 122 # define OPENSSL_clear_realloc_array(addr, old_num, num, size) \ argument 123 CRYPTO_clear_realloc_array(addr, old_num, num, size, \ 139 # define OPENSSL_secure_malloc_array(num, size) \ argument 141 # define OPENSSL_secure_calloc(num, size) \ argument [all …]
|
| A D | objects.h | 77 const void *OBJ_bsearch_(const void *key, const void *base, int num, int size, 80 int size,
|
| A D | async.h | 92 int (*func)(void *), void *args, size_t size);
|
| A D | bio.h.in | 598 # define BIO_set_buffer_size(b,size) BIO_ctrl(b,BIO_C_SET_BUFF_SIZE,size,NULL) argument 599 # define BIO_set_read_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,0) argument 600 # define BIO_set_write_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,1) argument 625 # define BIO_set_write_buf_size(b,size) (int)BIO_ctrl(b,BIO_C_SET_WRITE_BUF_SIZE,size,NULL) argument 626 # define BIO_get_write_buf_size(b,size) (size_t)BIO_ctrl(b,BIO_C_GET_WRITE_BUF_SIZE,size,NULL) argument 721 int BIO_gets(BIO *bp, char *buf, int size); 722 int BIO_get_line(BIO *bio, char *buf, int size);
|
| A D | trace.h | 311 const unsigned char *data, size_t size);
|
| A D | types.h | 235 typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata);
|
| A D | ui.h.in | 84 a buffer for the result to end up with, a minimum input size and a maximum 85 input size (the result buffer MUST be large enough to be able to contain 365 /* Return the required minimum size of the result */ 367 /* Return the required maximum size of the result */ 376 int UI_UTIL_read_pw(char *buf, char *buff, int size, const char *prompt,
|
| A D | asn1t.h.in | 52 * to the members, the size field is the 53 * structure size. 57 * and the 'size' field is the offset of the 611 long size; /* Structure size (usually) */ member 891 * underlying C type (long) differs in size depending on the architecture.
|
| A D | asn1.h.in | 215 /* size limits: this stuff is taken straight from RFC 5280 */ 693 int a2i_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *bs, char *buf, int size); 695 int a2i_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *bs, char *buf, int size); 697 int a2i_ASN1_STRING(BIO *bp, ASN1_STRING *bs, char *buf, int size);
|
| A D | core_dispatch.h | 176 OSSL_CORE_MAKE_FUNC(int, BIO_gets, (OSSL_CORE_BIO *bio, char *buf, int size))
|
| A D | cmp.h.in | 89 * -- invalid sender nonce, either missing or wrong size
|
| A D | ssl.h.in | 679 * is set at the maximum size the session ID can be. In SSLv3/TLSv1 it is 32 681 * also an error for the callback to set the size to zero. 1611 __owur char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size); 1965 __owur ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size, 2111 __owur char *SSL_CIPHER_description(const SSL_CIPHER *, char *buf, int size);
|
| A D | ct.h.in | 37 /* Minimum RSA key size, from RFC6962 */
|
| /include/internal/ |
| A D | mem_alloc_utils.h | 77 ossl_size_mul(const size_t num, const size_t size, size_t *bytes, in ossl_size_mul() argument 81 *bytes = safe_mul_size_t(num, size, &err); in ossl_size_mul()
|
| A D | quic_stream.h | 353 int ossl_quic_rstream_read(QUIC_RSTREAM *qrs, unsigned char *buf, size_t size, 362 int ossl_quic_rstream_peek(QUIC_RSTREAM *qrs, unsigned char *buf, size_t size,
|
| A D | hashtable.h | 95 #define HT_DEF_KEY_FIELD_CHAR_ARRAY(name, size) \ argument 96 HT_DEF_KEY_FIELD(name[size], char) 101 #define HT_DEF_KEY_FIELD_UINT8T_ARRAY(name, size) \ argument 102 HT_DEF_KEY_FIELD(name[size], uint8_t)
|
| A D | ktls.h | 200 size_t size, int flags) in ktls_sendfile() argument 205 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags); in ktls_sendfile() 362 static ossl_inline ossl_ssize_t ktls_sendfile(int s, int fd, off_t off, size_t size, int flags) in ktls_sendfile() argument 364 return sendfile(s, fd, &off, size); in ktls_sendfile()
|
| A D | bio.h | 92 int ossl_core_bio_gets(OSSL_CORE_BIO *cb, char *buf, int size);
|
| A D | cryptlib.h | 155 int size, int (*cmp) (const void *, const void *),
|
| A D | quic_ssl.h | 143 __owur int ossl_quic_set_write_buffer_size(SSL *s, size_t size);
|
| /include/crypto/ |
| A D | bn.h | 43 int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size); 51 void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size);
|
| A D | dh.h | 50 size_t ossl_dh_key2buf(const DH *dh, unsigned char **pbuf, size_t size,
|
| A D | x509.h | 35 int size; /* temp variable */ member
|
| A D | evp.h | 734 int size; member
|