/external/openssl/patches/ |
0002-handshake_cutthrough.patch | 30 + BIO_printf(bio_err," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n"); 38 + int cutthrough=0; 46 + else if (strcmp(*argv,"-cutthrough") == 0) 47 + cutthrough=1; 55 + /* Enable handshake cutthrough for client connections using 57 + if (cutthrough) 94 + && s->s3->previous_server_finished_len == 0 /* no cutthrough on renegotiation (would complicate the state machine) */ 236 + return (!s->server && /* cutthrough only applies to clients */ 239 + s->s3->in_read_app_data == 0 && /* cutthrough only applies to write() */ 240 + (SSL_get_mode((SSL*)s) & SSL_MODE_HANDSHAKE_CUTTHROUGH) && /* cutthrough enabled * [all...] |
0009-cbc_record_splitting.patch | 33 BIO_printf(bio_err," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n"); 42 - int cutthrough=0; 43 + int cutthrough=0, no_record_splitting=0; 57 else if (strcmp(*argv,"-cutthrough") == 0) 58 cutthrough=1; 68 - /* Enable handshake cutthrough for client connections using 73 if (cutthrough) 76 + /* Enable handshake cutthrough for client connections using
|
0008-alpn.patch | 31 BIO_printf(bio_err," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n"); 51 else if (strcmp(*argv,"-cutthrough") == 0) 76 /* Enable handshake cutthrough for client connections using
|
0004-channelid.patch | 144 && s->s3->previous_server_finished_len == 0 /* no cutthrough on renegotiation (would complicate the state machine) */ [all...] |
/external/openssl/android.testssl/ |
testssl | 73 echo test sslv2/sslv3 with both client and server authentication and handshake cutthrough 74 $ssltest -server_auth -client_auth -cutthrough $CA $extra || exit 1
|
/external/openssl/apps/ |
s_client.c | 368 BIO_printf(bio_err," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n"); 586 int cutthrough=0, no_record_splitting=0; local 905 else if (strcmp(*argv,"-cutthrough") == 0) 906 cutthrough=1; [all...] |
/external/openssl/ssl/ |
ssltest.c | 372 fprintf(stderr," -cutthrough - enable 1-RTT full-handshake for strong ciphers\n"); 553 int cutthrough = 0; local 770 else if (strcmp(*argv, "-cutthrough") == 0) 772 cutthrough = 1; 915 if (cutthrough) [all...] |
ssl_lib.c | [all...] |
s3_clnt.c | 564 && s->s3->previous_server_finished_len == 0 /* no cutthrough on renegotiation (would complicate the state machine) */ [all...] |
/external/chromium_org/third_party/boringssl/src/ssl/ |
ssl_lib.c | [all...] |
s3_clnt.c | 466 && s->s3->previous_server_finished_len == 0 /* no cutthrough on renegotiation (would complicate the state machine) */ [all...] |
/external/conscrypt/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | [all...] |