Home
last modified time | relevance | path

Searched refs:SSL_CTX_new (Results 1 – 25 of 65) sorted by relevance

123

/external/webrtc/rtc_base/
Dopenssl_session_cache_unittest.cc25 SSL_CTX* ssl_ctx = SSL_CTX_new(DTLSv1_2_client_method()); in TEST()
34 SSL_CTX* ssl_ctx = SSL_CTX_new(TLSv1_2_client_method()); in TEST()
43 SSL_CTX* ssl_ctx = SSL_CTX_new(DTLSv1_2_client_method()); in TEST()
52 SSL_CTX* ssl_ctx = SSL_CTX_new(DTLSv1_2_client_method()); in TEST()
63 SSL_CTX* ssl_ctx = SSL_CTX_new(DTLSv1_2_client_method()); in TEST()
74 SSL_CTX* ssl_ctx = SSL_CTX_new(DTLSv1_2_client_method()); in TEST()
Dopenssl_utility_unittest.cc187 SSL_CTX* ctx = SSL_CTX_new(SSLv23_method()); in CreateSSLWithPeerCertificate()
230 SSL_CTX* ssl_ctx = SSL_CTX_new(DTLSv1_2_client_method()); in TEST()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java320 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_new()
322 long c2 = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_new()
335 NativeCrypto.SSL_CTX_free(NativeCrypto.SSL_CTX_new(), null); in test_SSL_CTX_free()
345 long c = NativeCrypto.SSL_CTX_new(); in SSL_CTX_set_session_id_context_withNullShouldThrow()
355 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_set_session_id_context_withInvalidIdShouldThrow()
367 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_set_session_id_context()
378 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_new()
400 long c = NativeCrypto.SSL_CTX_new(); in setLocalCertsAndPrivateKey_withNullCertificatesShouldThrow()
412 long c = NativeCrypto.SSL_CTX_new(); in setLocalCertsAndPrivateKey_withNullKeyShouldThrow()
424 long c = NativeCrypto.SSL_CTX_new(); in setLocalCertsAndPrivateKey()
[all …]
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java324 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_new()
326 long c2 = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_new()
339 NativeCrypto.SSL_CTX_free(NativeCrypto.SSL_CTX_new(), null); in test_SSL_CTX_free()
349 long c = NativeCrypto.SSL_CTX_new(); in SSL_CTX_set_session_id_context_withNullShouldThrow()
359 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_set_session_id_context_withInvalidIdShouldThrow()
371 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_CTX_set_session_id_context()
382 long c = NativeCrypto.SSL_CTX_new(); in test_SSL_new()
404 long c = NativeCrypto.SSL_CTX_new(); in setLocalCertsAndPrivateKey_withNullCertificatesShouldThrow()
416 long c = NativeCrypto.SSL_CTX_new(); in setLocalCertsAndPrivateKey_withNullKeyShouldThrow()
428 long c = NativeCrypto.SSL_CTX_new(); in setLocalCertsAndPrivateKey()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dssl_test.cc547 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
569 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
578 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
591 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
603 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
821 bssl::UniquePtr<SSL_CTX> ssl_ctx(SSL_CTX_new(TLS_method())); in TEST()
873 bssl::UniquePtr<SSL_CTX> ssl_ctx(SSL_CTX_new(TLS_method())); in TEST()
884 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(method())); in ExpectDefaultVersion()
1057 bssl::UniquePtr<SSL_CTX> ssl_ctx(SSL_CTX_new(TLS_method())); in CreateSessionWithTicket()
1108 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in GetClientHelloLen()
[all …]
/external/boringssl/src/ssl/
Dssl_test.cc547 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
569 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
578 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
591 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
603 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in TEST()
821 bssl::UniquePtr<SSL_CTX> ssl_ctx(SSL_CTX_new(TLS_method())); in TEST()
873 bssl::UniquePtr<SSL_CTX> ssl_ctx(SSL_CTX_new(TLS_method())); in TEST()
884 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(method())); in ExpectDefaultVersion()
1057 bssl::UniquePtr<SSL_CTX> ssl_ctx(SSL_CTX_new(TLS_method())); in CreateSessionWithTicket()
1108 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in GetClientHelloLen()
[all …]
/external/python/cryptography/tests/hazmat/bindings/
Dtest_openssl.py43 ctx = b.lib.SSL_CTX_new(b.lib.SSLv23_method())
56 ctx = b.lib.SSL_CTX_new(b.lib.SSLv23_method())
71 ctx = b.lib.SSL_CTX_new(b.lib.SSLv23_method())
/external/rust/crates/quiche/deps/boringssl/src/fuzz/
Dsession.cc21 GlobalState() : ctx(SSL_CTX_new(TLS_method())) {} in GlobalState()
/external/rust/crates/quiche/deps/boringssl/src/tool/
Dciphers.cc38 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in Ciphers()
Dserver.cc218 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in Server()
/external/boringssl/src/tool/
Dciphers.cc38 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in Ciphers()
Dserver.cc218 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); in Server()
/external/libpcap/
Dsslutils.c75 ctx = SSL_CTX_new(meth); in ssl_init_once()
/external/grpc-grpc/test/core/tsi/
Dssl_session_cache_test.cc42 SessionTracker() { ssl_context_ = SSL_CTX_new(TLSv1_2_method()); } in SessionTracker()
/external/conscrypt/common/src/main/java/org/conscrypt/
DAbstractSessionContext.java42 final long sslCtxNativePointer = NativeCrypto.SSL_CTX_new();
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DAbstractSessionContext.java43 final long sslCtxNativePointer = NativeCrypto.SSL_CTX_new();
/external/grpc-grpc/test/core/handshake/
Dserver_ssl_common.cc150 SSL_CTX* ctx = SSL_CTX_new(method); in server_ssl_test()
Dclient_ssl.cc144 SSL_CTX* ctx = SSL_CTX_new(method); in server_thread()
/external/libevent/sample/
Dle-proxy.c283 ssl_ctx = SSL_CTX_new(TLS_method()); in main()
Dhttps-client.c360 ssl_ctx = SSL_CTX_new(SSLv23_method()); in main()
/external/libcups/cups/
Dtls-boringssl.c356 context = SSL_CTX_new(TLS_method()); in _httpTLSStart()
/external/libwebsockets/lib/tls/mbedtls/
Dmbedtls-client.c272 vh->tls.ssl_client_ctx = SSL_CTX_new(method); in lws_tls_client_create_vhost_context()
/external/curl/lib/
Dsetup-vms.h275 #define SSL_CTX_new SSL_CTX_NEW macro
/external/openscreen/platform/impl/
Dtls_connection_factory_posix.cc229 SSL_CTX* context = SSL_CTX_new(TLS_method()); in Initialize()
/external/rust/crates/quiche/deps/boringssl/src/ssl/test/
Dfuzzer.h379 ctx_.reset(SSL_CTX_new(protocol_ == kDTLS ? DTLS_method() : TLS_method())); in Init()

123