Home
last modified time | relevance | path

Searched refs:SSL_set_cipher_lists (Results 1 – 3 of 3) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java893 static native void SSL_set_cipher_lists(long ssl, String[] ciphers); in SSL_set_cipher_lists() method in NativeCrypto
916 SSL_set_cipher_lists(ssl, opensslSuites.toArray(new String[opensslSuites.size()])); in setEnabledCipherSuites()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java625 NativeCrypto.SSL_set_cipher_lists(NULL, null); in SSL_set_cipher_lists_withNullSslShouldThrow()
633 NativeCrypto.SSL_set_cipher_lists(s, null); in SSL_set_cipher_lists_withNullCiphersShouldThrow()
645 NativeCrypto.SSL_set_cipher_lists(s, new String[] {null}); in test_SSL_set_cipher_lists_withNullCipherShouldThrow()
659 NativeCrypto.SSL_set_cipher_lists(s, new String[] {}); in SSL_set_cipher_lists_withEmptyCiphersShouldSucceed()
680 NativeCrypto.SSL_set_cipher_lists(s, new String[] {illegal}); in SSL_set_cipher_lists_withIllegalCipherShouldThrow()
697 NativeCrypto.SSL_set_cipher_lists(s, ciphers.toArray(new String[ciphers.size()])); in SSL_set_cipher_lists_withValidCiphersShouldSucceed()
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp9574 CONSCRYPT_NATIVE_METHOD(NativeCrypto, SSL_set_cipher_lists, "(J[Ljava/lang/String;)V"),