Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:SSL_OP_NO_SSLv3

21 import static org.conscrypt.NativeConstants.SSL_OP_NO_SSLv3;
386 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_SSLv3) == 0);
538 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_SSLv3) == 0);
539 NativeCrypto.SSL_set_options(s, null, SSL_OP_NO_SSLv3);
540 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_SSLv3) != 0);
554 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_SSLv3) == 0);
555 NativeCrypto.SSL_set_options(s, null, SSL_OP_NO_SSLv3);
556 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_SSLv3) != 0);
557 NativeCrypto.SSL_clear_options(s, null, SSL_OP_NO_SSLv3);
558 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_SSLv3) == 0);