| /src/external/mpl/bind/dist/bin/tests/system/doth/ |
| get_openssl_version.py | 14 import ssl 16 version = ssl.OPENSSL_VERSION_INFO
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| ssl_unwrap.h | 13 #include <openssl/ssl.h> 16 #define SSL_CONNECTION_FROM_SSL_ONLY_int(ssl, c) \ 17 ((ssl) == NULL ? NULL \ 18 : ((ssl)->type == SSL_TYPE_SSL_CONNECTION \ 19 ? (c SSL_CONNECTION *)(ssl) \ 22 #define SSL_CONNECTION_FROM_SSL_ONLY(ssl) \ 23 SSL_CONNECTION_FROM_SSL_ONLY_int(ssl, SSL_CONNECTION_NO_CONST) 24 #define SSL_CONNECTION_FROM_CONST_SSL_ONLY(ssl) \ 25 SSL_CONNECTION_FROM_SSL_ONLY_int(ssl, const) 26 #define SSL_CONNECTION_GET_CTX(sc) ((sc)->ssl.ctx [all...] |
| quic_trace.h | 16 const void *buf, size_t msglen, SSL *ssl, void *arg);
|
| ssl.h | 10 #include <openssl/ssl.h> 17 const void *buf, size_t len, SSL *ssl, void *arg); 19 int ossl_ssl_get_error(const SSL *s, int i, int check_err);
|
| /src/crypto/external/apache2/openssl/dist/util/ |
| check-malloc-errs | 10 pcregrep -rnM 'OPENSSL_.?alloc.*\n.*if.*NULL.*\n.*return' crypto ssl 11 pcregrep -rnM 'if.*OPENSSL_.?alloc.*NULL.*\n.*.*return' crypto ssl
|
| /src/crypto/external/bsd/openssl/dist/util/ |
| check-malloc-errs | 10 pcregrep -rnM 'OPENSSL_.?alloc.*\n.*if.*NULL.*\n.*return' crypto ssl 11 pcregrep -rnM 'if.*OPENSSL_.?alloc.*NULL.*\n.*.*return' crypto ssl
|
| /src/crypto/external/bsd/openssl.old/dist/util/ |
| check-malloc-errs | 10 pcregrep -rnM 'OPENSSL_.?alloc.*\n.*if.*NULL.*\n.*return' crypto ssl 11 pcregrep -rnM 'if.*OPENSSL_.?alloc.*NULL.*\n.*.*return' crypto ssl
|
| /src/external/bsd/unbound/dist/daemon/ |
| cachedump.h | 79 * @param ssl: to print to 82 * @return false on ssl print error. 84 int dump_cache(RES* ssl, struct worker* worker); 88 * @param ssl: to read from 91 * @return false on ssl error. 93 int load_cache(RES* ssl, struct worker* worker); 97 * @param ssl: to read from 103 * @return false on ssl error. 105 int print_deleg_lookup(RES* ssl, struct worker* worker, uint8_t* nm,
|
| /src/crypto/external/bsd/openssl/dist/ssl/ |
| bio_ssl.c | 27 SSL *ssl; /* The ssl handle :-) */ member in struct:bio_ssl_st 38 "ssl", 80 if (bs->ssl != NULL && !SSL_in_init(bs->ssl)) 81 SSL_shutdown(bs->ssl); 83 SSL_free(bs->ssl); 95 SSL *ssl; local 165 SSL *ssl; local 225 SSL **sslp, *ssl; local 395 SSL *ssl; local 424 BIO *ret = NULL, *buf = NULL, *ssl = NULL; local 443 BIO *ret = NULL, *con = NULL, *ssl = NULL; local 462 SSL *ssl; local [all...] |
| /src/crypto/external/apache2/openssl/dist/ssl/ |
| bio_ssl.c | 29 SSL *ssl; /* The ssl handle :-) */ member in struct:bio_ssl_st 44 "ssl", 84 if (bs->ssl != NULL && !SSL_in_init(bs->ssl)) 85 SSL_shutdown(bs->ssl); 87 SSL_free(bs->ssl); 99 SSL *ssl; local 169 SSL *ssl; local 229 SSL **sslp, *ssl; local 417 SSL *ssl; local 446 BIO *ret = NULL, *buf = NULL, *ssl = NULL; local 471 BIO *ret = NULL, *con = NULL, *ssl = NULL; local 497 SSL *ssl; local [all...] |
| ssl_err_legacy.c | 12 #include <openssl/ssl.h>
|
| /src/crypto/external/bsd/openssl.old/dist/ssl/ |
| bio_ssl.c | 27 SSL *ssl; /* The ssl handle :-) */ member in struct:bio_ssl_st 38 "ssl", 80 if (bs->ssl != NULL) 81 SSL_shutdown(bs->ssl); 83 SSL_free(bs->ssl); 95 SSL *ssl; local 102 ssl = sb->ssl 165 SSL *ssl; local 225 SSL **sslp, *ssl; local 395 SSL *ssl; local 424 BIO *ret = NULL, *buf = NULL, *ssl = NULL; local 443 BIO *ret = NULL, *con = NULL, *ssl = NULL; local 462 SSL *ssl; local [all...] |
| /src/crypto/external/apache2/openssl/dist/demos/guide/ |
| tls-client-non-block.c | 26 #include <openssl/ssl.h> 103 static void wait_for_activity(SSL *ssl, int write) 109 sock = SSL_get_fd(ssl); 138 static int handle_io_failure(SSL *ssl, int res) 140 switch (SSL_get_error(ssl, res)) { 143 wait_for_activity(ssl, 0); 148 wait_for_activity(ssl, 1); 163 if (SSL_get_verify_result(ssl) != X509_V_OK 180 SSL *ssl = NULL; local [all...] |
| quic-client-non-block.c | 26 #include <openssl/ssl.h> 112 static void wait_for_activity(SSL *ssl) 120 sock = SSL_get_fd(ssl); 129 if (SSL_net_write_desired(ssl)) 131 if (SSL_net_read_desired(ssl)) 139 if (SSL_get_event_timeout(ssl, &tv, &isinfinite) && !isinfinite) 165 static int handle_io_failure(SSL *ssl, int res) 167 switch (SSL_get_error(ssl, res)) 227 SSL *ssl = NULL; local [all...] |
| quic-client-block.c | 25 #include <openssl/ssl.h> 120 SSL *ssl = NULL; local 151 * Create an SSL_CTX which we can use to create SSL objects from. We 174 /* Create an SSL object to represent the TLS connection */ 175 ssl = SSL_new(ctx); 176 if (ssl == NULL) { 177 printf("Failed to create the SSL object\n"); 190 SSL_set_bio(ssl, bio, bio); 196 if (!SSL_set_tlsext_host_name(ssl, hostname)) [all...] |
| tls-client-block.c | 25 #include <openssl/ssl.h> 103 SSL *ssl = NULL; local 132 * Create an SSL_CTX which we can use to create SSL objects from. We 164 /* Create an SSL object to represent the TLS connection */ 165 ssl = SSL_new(ctx); 166 if (ssl == NULL) { 167 printf("Failed to create the SSL object\n"); 180 SSL_set_bio(ssl, bio, bio); 186 if (!SSL_set_tlsext_host_name(ssl, hostname)) [all...] |
| /src/crypto/external/apache2/openssl/dist/doc/designs/ddd/ |
| ddd-03-fd-blocking.c | 1 #include <openssl/ssl.h> 50 SSL *new_conn(SSL_CTX *ctx, int fd, const char *bare_hostname) 52 SSL *ssl; local 57 ssl = SSL_new(ctx); 58 if (ssl == NULL) 61 SSL_set_connect_state(ssl); /* cannot fail */ 63 if (SSL_set_fd(ssl, fd) <= 0) { 64 SSL_free(ssl); 68 if (SSL_set1_host(ssl, bare_hostname) <= 0) 142 SSL *ssl = NULL; local [all...] |
| /src/external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ |
| ssl_req_timeout.conf | 12 ssl-port: @PORT@ 13 ssl-service-key: "unbound_server.key" 14 ssl-service-pem: "unbound_server.pem"
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| ssl_ctx_test.c | 11 #include <openssl/ssl.h> 34 SSL *ssl = NULL; local 42 ssl = SSL_new(ctx); 43 if (ssl == NULL) 55 if (!TEST_int_eq(SSL_set_min_proto_version(ssl, t.min_version), t.min_ok)) 57 if (!TEST_int_eq(SSL_set_max_proto_version(ssl, t.max_version), t.max_ok)) 59 if (!TEST_int_eq(SSL_get_min_proto_version(ssl), t.expected_min)) 61 if (!TEST_int_eq(SSL_get_max_proto_version(ssl), t.expected_max)) 67 SSL_free(ssl); [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| ssl_ctx_test.c | 11 #include <openssl/ssl.h> 34 SSL *ssl = NULL; local 42 ssl = SSL_new(ctx); 43 if (ssl == NULL) 55 if (!TEST_int_eq(SSL_set_min_proto_version(ssl, t.min_version), t.min_ok)) 57 if (!TEST_int_eq(SSL_set_max_proto_version(ssl, t.max_version), t.max_ok)) 59 if (!TEST_int_eq(SSL_get_min_proto_version(ssl), t.expected_min)) 61 if (!TEST_int_eq(SSL_get_max_proto_version(ssl), t.expected_max)) 67 SSL_free(ssl); [all...] |
| /src/external/bsd/libpcap/dist/ |
| sslutils.c | 76 snprintf(errbuf, errbuflen, "Cannot get a new SSL context: %s", ERR_error_string(ERR_get_error(), NULL)); 134 SSL *ssl_promotion(int is_server, PCAP_SOCKET s, char *errbuf, size_t errbuflen) 140 SSL *ssl = SSL_new(ctx); // TODO: also a DTLS context local 141 SSL_set_fd(ssl, (int)s); 144 if (SSL_accept(ssl) <= 0) { 150 if (SSL_connect(ssl) <= 0) { 157 return ssl; 160 // Finish using an SSL handle; shut down the connection and free the 162 void ssl_finish(SSL *ssl [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ossl_shim/ |
| ossl_shim.cc | 49 #include <openssl/ssl.h> 103 static bool SetTestConfig(SSL *ssl, const TestConfig *config) { 104 return SSL_set_ex_data(ssl, g_config_index, (void *)config) == 1; 107 static const TestConfig *GetTestConfig(const SSL *ssl) { 108 return (const TestConfig *)SSL_get_ex_data(ssl, g_config_index); 111 static bool SetTestState(SSL *ssl, std::unique_ptr<TestState> state) { 113 if (SSL_set_ex_data(ssl, g_state_index, state.get()) == 1) [all...] |
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| srtp.h | 25 # include <openssl/ssl.h> 45 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); 47 __owur STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); variable 48 __owur SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
|
| /src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| srtp.h | 19 # include <openssl/ssl.h> 39 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); 41 __owur STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); variable 42 __owur SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s);
|
| /src/crypto/external/apache2/openssl/dist/test/quic-openssl-docker/hq-interop/ |
| quic-hq-interop.c | 18 * The file includes functions for setting up SSL/TLS contexts, managing session 24 * settings, peer address management, and SSL handshake and shutdown processes. 38 * SSL_SESSION_FILE - set to a file path to record ssl sessions and restore 54 #include <openssl/ssl.h> 57 static int handle_io_failure(SSL *ssl, int res); 191 * @brief Waits for activity on the SSL socket, either for reading or writing. 193 * This function monitors the underlying file descriptor of the given SSL 196 * or writable, depending on what the SSL connection requires. 198 * @param ssl A pointer to the SSL object representing the connection 859 SSL *ssl = NULL; local [all...] |