/openssl/Configurations/ |
H A D | INTERNALS.Configure | 22 condition stack that tell if a build.info should be processed or if it 35 statements) need to be processed either way to keep track of the skip 39 the skip stack should look like after each line is processed: 44 | ... whatever ... | | this line is processed | 46 | ... whatever ... | | this line is processed | 52 | ... whatever ... | | this line is processed | 78 | ... whatever ... | | this line is processed | 80 | ... whatever ... | | this line is processed | 86 | ... whatever ... | | this line is processed | 102 | ... whatever ... | | this line is processed | [all …]
|
/openssl/crypto/bio/ |
H A D | bio_cb.c | 20 int argi, long argl, int ret, size_t *processed) in BIO_debug_callback_ex() argument 30 if (processed != NULL) in BIO_debug_callback_ex() 31 l = *processed; in BIO_debug_callback_ex() 126 size_t processed = 0; in BIO_debug_callback() local 129 processed = (size_t)ret; in BIO_debug_callback() 131 argi, argl, ret > 0 ? 1 : (int)ret, &processed); in BIO_debug_callback()
|
H A D | bio_lib.c | 39 size_t *processed) in bio_call_callback() argument 47 return b->callback_ex(b, oper, argp, len, argi, argl, inret, processed); in bio_call_callback() 66 if (*processed > INT_MAX) in bio_call_callback() 68 inret = *processed; in bio_call_callback() 74 *processed = (size_t)ret; in bio_call_callback()
|
/openssl/doc/man3/ |
H A D | SSL_pending.pod | 18 is processed (e.g. decrypted) in one go and is buffered by OpenSSL until it is 21 SSL_pending() returns the number of bytes which have been processed, buffered 35 SSL_has_pending() returns 1 if B<s> has buffered data (whether processed or 38 data because the unprocessed buffered data when processed yielded no application 47 SSL_pending() returns the number of buffered and processed application data
|
H A D | SSL_CONF_cmd_argv.pod | 17 are updated to reflect the number of command options processed. The B<pargc> 22 SSL_CONF_cmd_argv() returns the number of command arguments processed: 0, 1, 2 27 If -1 is returned the command is recognised but couldn't be processed due
|
H A D | EVP_EncodeInit.pod | 62 blocks of data (48 bytes) will be immediately processed and output by this 63 function. Any remainder is held in the B<ctx> object and will be processed by a 67 any remainder). This gives the number of blocks of data that will be processed. 107 if its length is not a multiple of 4 (including any padding), to be processed 126 A return value of 0 additionally indicates that the last 4 bytes processed 129 expected to be processed. 131 For every 4 valid base64 bytes processed (ignoring whitespace, carriage returns
|
H A D | SSL_inject_net_dgram.pod | 19 object. The payload is processed as though it was received from the network. 30 OpenSSL, the packet will be processed as though the received datagram had the
|
H A D | SSL_CTX_set_read_ahead.pod | 48 records, and SSL_has_pending() can't tell the difference between processed and 52 record available that hasn't been processed.
|
H A D | SSL_CTX_set_tlsext_servername_callback.pod | 107 =item On the server, after the servername extension has been processed and a 113 =item On the server, after the servername extension has been processed and a 122 client is processed. The servername, certificate and ALPN callbacks occur after 123 a servername extension from the client is processed.
|
H A D | SSL_in_init.pod | 65 is being or has been processed. 82 Early data is being processed
|
H A D | BIO_set_callback.pod | 16 long argl, int ret, size_t *processed); 25 int argi, long argl, int ret, size_t *processed); 93 =item B<processed> 95 B<processed> is a pointer to a location which will be updated with the amount of
|
H A D | SSL_read.pod | 47 completely received, can it be processed (decryption and check of integrity). 53 Only when the record has been received and processed completely will the read 61 record has been processed, the read function can return and set the error to 70 non-application data record has been processed and B<SSL_MODE_AUTO_RETRY> is
|
H A D | SSL_CTX_set_mode.pod | 63 If a non-application data record was processed, 66 If such a non-application data record was processed, the flag 74 an application data record has been processed.
|
H A D | BIO_sendmmsg.pod | 43 messages processed. 47 set to the size of the buffer in bytes. If the given B<BIO_MSG> is processed (in 102 number of messages successfully processed; see the RETURN VALUES section for 138 the number of messages successfully processed (which need not be nonzero) to
|
H A D | CMS_final.pod | 20 processed. The B<dcont> parameter contains a BIO to write content to after
|
/openssl/doc/man1/ |
H A D | openssl-rehash.pod.in | 49 processed in turn. If not, then the B<SSL_CERT_DIR> environment variable 53 but often F</usr/local/ssl/certs>) is processed. 55 In order for a directory to be processed, the user must have write 60 When a directory is processed, all links in it that have a name 120 By default, this command only lists each directory as it is processed.
|
/openssl/apps/lib/ |
H A D | s_cb.c | 459 int argi, long argl, int ret, size_t *processed) in bio_dump_callback() argument 471 if (ret > 0 && processed != NULL) { in bio_dump_callback() 473 (void *)bio, (void *)argp, len, *processed, *processed); in bio_dump_callback() 474 BIO_dump(out, argp, (int)*processed); in bio_dump_callback() 482 if (ret > 0 && processed != NULL) { in bio_dump_callback() 484 (void *)bio, (void *)argp, len, *processed, *processed); in bio_dump_callback() 485 BIO_dump(out, argp, (int)*processed); in bio_dump_callback()
|
/openssl/ssl/quic/ |
H A D | quic_record_rx.c | 245 urxe->processed = 0; in ossl_qrx_inject_urxe() 807 if (pkt_is_marked(&urxe->processed, pkt_idx)) in qrx_process_pkt() 863 pkt_mark(&urxe->processed, pkt_idx); in qrx_process_pkt() 1038 pkt_mark(&urxe->processed, pkt_idx); in qrx_process_pkt() 1091 pkt_mark(&urxe->processed, pkt_idx); in qrx_process_pkt() 1104 pkt_mark(&urxe->processed, pkt_idx); in qrx_process_pkt()
|
/openssl/test/ |
H A D | bio_callback_test.c | 28 int argi, long argl, int ret, size_t *processed) in my_bio_cb_ex() argument 39 my_param_processed[my_param_count] = processed != NULL ? *processed : 0; in my_bio_cb_ex()
|
/openssl/include/internal/ |
H A D | quic_demux.h | 107 uint64_t processed, hpr_removed; member
|
/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_cbc_hmac_sha1_hw.c | 138 unsigned int x4 = 4 * n4x, minblocks, processed = 0; in tls1_multi_block_encrypt() local 248 processed += MAXCHUNKSIZE; in tls1_multi_block_encrypt() 262 off = (len - processed) - (64 - 13) - off; /* remainder actually */ in tls1_multi_block_encrypt() 328 memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed); in tls1_multi_block_encrypt() 348 ciph_d[i].blocks = (len - processed) / 16; in tls1_multi_block_encrypt()
|
H A D | cipher_aes_cbc_hmac_sha256_hw.c | 142 unsigned int x4 = 4 * n4x, minblocks, processed = 0; in tls1_multi_block_encrypt() local 256 processed += MAXCHUNKSIZE; in tls1_multi_block_encrypt() 270 off = (len - processed) - (64 - 13) - off; /* remainder actually */ in tls1_multi_block_encrypt() 348 memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed); in tls1_multi_block_encrypt() 371 ciph_d[i].blocks = (len - processed) / 16; in tls1_multi_block_encrypt()
|
/openssl/crypto/evp/ |
H A D | e_aes_cbc_hmac_sha1.c | 175 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = in tls1_1_multi_block_encrypt() local 286 processed += MAXCHUNKSIZE; in tls1_1_multi_block_encrypt() 300 off = (len - processed) - (64 - 13) - off; /* remainder actually */ in tls1_1_multi_block_encrypt() 366 memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed); in tls1_1_multi_block_encrypt() 386 ciph_d[i].blocks = (len - processed) / 16; in tls1_1_multi_block_encrypt()
|
H A D | e_aes_cbc_hmac_sha256.c | 169 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = in tls1_1_multi_block_encrypt() local 284 processed += MAXCHUNKSIZE; in tls1_1_multi_block_encrypt() 298 off = (len - processed) - (64 - 13) - off; /* remainder actually */ in tls1_1_multi_block_encrypt() 376 memcpy(ciph_d[i].out, ciph_d[i].inp, len - processed); in tls1_1_multi_block_encrypt() 399 ciph_d[i].blocks = (len - processed) / 16; in tls1_1_multi_block_encrypt()
|
/openssl/apps/include/ |
H A D | s_apps.h | 45 int argi, long argl, int ret, size_t *processed);
|