/third_party/openssl/doc/man3/ |
D | SSL_write.pod | 5 SSL_write_ex, SSL_write, SSL_sendfile - write bytes to a TLS/SSL connection 12 int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written); 17 SSL_write_ex() and SSL_write() write B<num> bytes from the buffer B<buf> into 18 the specified B<ssl> connection. On success SSL_write_ex() will store the number 32 SSL_write_ex(), or SSL_write(). 79 SSL_write_ex() can be called with num=0, but will not send application data to 84 SSL_write_ex() will return 1 for success or 0 for failure. Success means that 144 The SSL_write_ex() function was added in OpenSSL 1.1.1.
|
D | SSL_CTX_set_mode.pod | 41 Allow SSL_write_ex(..., n, &r) to return with 0 < r < n (i.e. report success 43 SSL_write(). When not set (the default), SSL_write_ex() or SSL_write() will only 44 report success once the complete chunk was written. Once SSL_write_ex() or 46 to SSL_write_ex() or SSL_write() must only send the n-r bytes left, imitating 51 Make it possible to retry SSL_write_ex() or SSL_write() with changed buffer 131 L<ssl(7)>, L<SSL_read_ex(3)>, L<SSL_read(3)>, L<SSL_write_ex(3)> or
|
D | SSL_get_error.pod | 18 SSL_write_ex() or SSL_write() on B<ssl>. The value returned by that TLS/SSL I/O 86 even when the call that set this error was an SSL_write() or SSL_write_ex(). 87 However, if the call was an SSL_write() or SSL_write_ex(), it should be called 89 from SSL_write() or SSL_write_ex() then you should not do any other operation 100 and SSL_write() or SSL_write_ex() may want to read data. 104 SSL_peek(), SSL_write_ex(), and SSL_write() will handle any pending handshakes.
|
D | SSL_CTX_set_split_send_fragment.pod | 67 amount of data provided to the SSL_write_ex() or SSL_write() call divided by 73 SSL_write/SSL_write_ex called with 0-2000 bytes == 1 pipeline used 75 SSL_write/SSL_write_ex called with 2001-4000 bytes == 2 pipelines used 77 SSL_write/SSL_write_ex called with 4001-6000 bytes == 3 pipelines used 79 SSL_write/SSL_write_ex called with 6001+ bytes == 4 pipelines used
|
D | SSL_read_early_data.pod | 95 function is similar to the L<SSL_write_ex(3)> function, but with the following 96 differences. See L<SSL_write_ex(3)> for information on how to write bytes to 99 L<SSL_write_ex(3)>. 103 L<SSL_write_ex(3)>, L<SSL_read_ex(3)>, L<SSL_connect(3)>, L<SSL_do_handshake(3)> 112 the correct course of action, as for L<SSL_write_ex(3)>. 117 such as L<SSL_write_ex(3)>, which will transparently complete the connection and 132 L<SSL_write_ex(3)>, L<SSL_read_ex(3)>, L<SSL_accept(3)>, L<SSL_do_handshake(3)>, 172 Servers must not call L<SSL_read_ex(3)>, L<SSL_read(3)>, L<SSL_write_ex(3)> or 354 L<SSL_write_ex(3)>,
|
D | SSL_key_update.pod | 38 or SSL_write_ex() takes place on the connection. Alternatively SSL_do_handshake() 52 such as SSL_read_ex() or SSL_write_ex() takes place on the connection a check 94 L<SSL_write_ex(3)>,
|
D | SSL_set_connect_state.pod | 43 using L<SSL_write_ex(3)>, L<SSL_write(3)>, L<SSL_read_ex(3)>, or L<SSL_read(3)>, 64 L<SSL_write_ex(3)>, L<SSL_write(3)>, L<SSL_read_ex(3)>, L<SSL_read(3)>,
|
D | SSL_read.pod | 131 L<SSL_get_error(3)>, L<SSL_write_ex(3)>,
|
D | SSL_CTX_set_verify.pod | 212 sent to the client, this can be done with SSL_do_handshake() or SSL_write_ex().
|
/third_party/openssl/test/ |
D | sslapitest.c | 2555 if (!TEST_true(SSL_write_ex(serverssl, &c, 1, &nbytes)) in test_extra_tickets() 2569 || !TEST_true(SSL_write_ex(serverssl, &c, sizeof(c), &nbytes)) in test_extra_tickets() 2583 || !TEST_true(SSL_write_ex(serverssl, &c, 0, &nbytes)) in test_extra_tickets() 2614 if (!TEST_false(SSL_write_ex(serverssl, &c, 1, &nbytes)) in test_extra_tickets() 2632 if (!TEST_true(SSL_write_ex(serverssl, &c, 1, &nbytes)) in test_extra_tickets() 2647 if (!TEST_true(SSL_write_ex(serverssl, &c, 1, &nbytes)) in test_extra_tickets() 3362 if (!TEST_true(SSL_write_ex(clientssl, MSG5, strlen(MSG5), &written)) in test_early_data_read_write() 3440 if (!TEST_true(SSL_write_ex(serverssl, MSG7, strlen(MSG7), &written)) in test_early_data_read_write() 3487 if (!TEST_true(SSL_write_ex(clientssl, MSG5, strlen(MSG5), &written)) in test_early_data_read_write() 3734 if (!TEST_false(SSL_write_ex(clientssl, MSG2, strlen(MSG2), &written)) in early_data_skip_helper() [all …]
|
/third_party/openssl/doc/man7/ |
D | ssl.pod | 33 L<SSL_read_ex(3)>, L<SSL_read(3)>, L<SSL_write_ex(3)> and L<SSL_write(3)> are
|
/third_party/openssl/util/ |
D | libssl.num | 410 SSL_write_ex 411 3_0_0 EXIST::FUNCTION:
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 2151 int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written) in SSL_write_ex() function 2196 ret = SSL_write_ex(s, buf, num, &writtmp); in SSL_write_early_data() 2218 ret = SSL_write_ex(s, buf, num, written); in SSL_write_early_data()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | ssl.h | 1841 __owur int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written);
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b1.rst | 677 The :mod:`ssl` module now uses ``SSL_read_ex`` and ``SSL_write_ex``
|
/third_party/python/Modules/ |
D | _ssl.c | 2349 retval = SSL_write_ex(self->ssl, b->buf, (size_t)b->len, &count); in _ssl__SSLSocket_write_impl()
|
/third_party/openssl/include/openssl/ |
D | ssl.h.in | 1901 __owur int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written);
|
/third_party/python/Doc/library/ |
D | ssl.rst | 1161 Python now uses ``SSL_read_ex`` and ``SSL_write_ex`` internally. The
|