HomeSort by relevance Sort by last modified time
    Searched refs:ciphers (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/curl/docs/cmdline-opts/
proxy-ciphers.d 1 Long: proxy-ciphers
3 Help: SSL ciphers to use for proxy
6 Same as --ciphers but used in HTTPS proxy context.
ciphers.d 1 Long: ciphers
2 Arg: <list of ciphers>
3 help: SSL ciphers to use
6 Specifies which ciphers to use in the connection. The list of ciphers must
7 specify valid ciphers. Read up on SSL cipher list details on this URL:
9 https://curl.haxx.se/docs/ssl-ciphers.html
  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
EndpointFactory.java 10 String[] ciphers) throws IOException;
13 String[] protocols, String[] ciphers) throws IOException;
ClientSocketBenchmark.java 62 ChannelType.CHANNEL, config.messageSize(), getProtocols(), ciphers(config));
76 config.channelType(), server.port(), getProtocols(), ciphers(config));
143 private String[] ciphers(Config config) { method in class:ClientSocketBenchmark
ServerSocketBenchmark.java 65 channelType, config.messageSize(), getProtocols(), ciphers(config));
89 ChannelType.CHANNEL, server.port(), getProtocols(), ciphers(config));
146 private String[] ciphers(Config config) { method in class:ServerSocketBenchmark
ClientEndpoint.java 40 String[] protocols, String[] ciphers) throws IOException {
43 socket.setEnabledCipherSuites(ciphers);
  /external/webrtc/webrtc/p2p/base/
transportchannel.cc 57 bool TransportChannel::SetSrtpCryptoSuites(const std::vector<int>& ciphers) {
62 bool TransportChannel::SetSrtpCiphers(const std::vector<std::string>& ciphers) {
64 for (const auto cipher : ciphers) {
dtlstransportchannel.cc 283 LOG_J(LS_ERROR, this) << "Couldn't set DTLS-SRTP ciphers.";
295 const std::vector<int>& ciphers) {
296 if (srtp_ciphers_ == ciphers)
300 LOG(LS_WARNING) << "Ignoring new SRTP ciphers while DTLS is negotiating";
305 // We don't support DTLS renegotiation currently. If new set of srtp ciphers
314 std::find(ciphers.begin(), ciphers.end(), current_srtp_cipher);
315 if (iter == ciphers.end()) {
317 for (size_t i = 0; i < ciphers.size(); ++i) {
319 requested_str.append(rtc::SrtpCryptoSuiteToName(ciphers[i]))
    [all...]
transportchannel.h 111 // Sets up the ciphers to use for DTLS-SRTP. TODO(guoweis): Make this pure
113 virtual bool SetSrtpCryptoSuites(const std::vector<int>& ciphers);
117 virtual bool SetSrtpCiphers(const std::vector<std::string>& ciphers);
  /external/conscrypt/benchmark-android/src/main/java/org/conscrypt/
AndroidEndpointFactory.java 26 String[] ciphers) throws IOException {
28 factories.clientFactory, channelType, port, protocols, ciphers);
33 String[] protocols, String[] ciphers) throws IOException {
35 channelType, messageSize, protocols, ciphers);
  /external/boringssl/src/tool/
ciphers.cc 26 bool Ciphers(const std::vector<std::string> &args) {
32 "Usage: bssl ciphers [-openssl-name] <cipher suite string>\n");
45 STACK_OF(SSL_CIPHER) *ciphers = SSL_CTX_get_ciphers(ctx.get());
48 for (size_t i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
50 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i);
  /system/iot/attestation/partner-tools/
aesgcm.py 23 from cryptography.hazmat.primitives.ciphers import algorithms
24 from cryptography.hazmat.primitives.ciphers import Cipher
25 from cryptography.hazmat.primitives.ciphers import modes
  /external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
OpenJdkEndpointFactory.java 28 String[] ciphers) throws IOException {
30 factories.clientFactory, channelType, port, protocols, ciphers);
35 String[] protocols, String[] ciphers) throws IOException {
37 channelType, messageSize, protocols, ciphers);
  /prebuilts/go/darwin-x86/src/crypto/internal/cipherhw/
doc.go 6 // support for certain ciphers and authenticators is present.
  /prebuilts/go/linux-x86/src/crypto/internal/cipherhw/
doc.go 6 // support for certain ciphers and authenticators is present.
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ssl.py 95 # Disable weak or insecure ciphers by default
110 suppress_ragged_eofs=True, ciphers=None):
121 if ciphers is None and ssl_version != _SSLv2_IF_EXISTS:
122 ciphers = _DEFAULT_CIPHERS
141 ciphers)
149 self.ciphers = ciphers
314 self.ca_certs, self.ciphers)
355 ciphers=self.ciphers,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ssl.py 95 # Disable weak or insecure ciphers by default
110 suppress_ragged_eofs=True, ciphers=None):
121 if ciphers is None and ssl_version != _SSLv2_IF_EXISTS:
122 ciphers = _DEFAULT_CIPHERS
141 ciphers)
149 self.ciphers = ciphers
314 self.ca_certs, self.ciphers)
355 ciphers=self.ciphers,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 95 # Disable weak or insecure ciphers by default
110 suppress_ragged_eofs=True, ciphers=None):
121 if ciphers is None and ssl_version != _SSLv2_IF_EXISTS:
122 ciphers = _DEFAULT_CIPHERS
141 ciphers)
149 self.ciphers = ciphers
314 self.ca_certs, self.ciphers)
355 ciphers=self.ciphers,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 95 # Disable weak or insecure ciphers by default
110 suppress_ragged_eofs=True, ciphers=None):
121 if ciphers is None and ssl_version != _SSLv2_IF_EXISTS:
122 ciphers = _DEFAULT_CIPHERS
141 ciphers)
149 self.ciphers = ciphers
314 self.ca_certs, self.ciphers)
355 ciphers=self.ciphers,
    [all...]
  /external/scapy/test/tls/
example_client.py 25 ch = TLSClientHello(ciphers=int(sys.argv[1], 16))
travis_test_client.py 31 ch = TLSClientHello(version=int(version, 16), ciphers=int(cipher_suite_code, 16))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ssl.py 104 suppress_ragged_eofs=True, ciphers=None):
132 ciphers)
140 self.ciphers = ciphers
305 self.ca_certs, self.ciphers)
343 ciphers=self.ciphers,
365 suppress_ragged_eofs=True, ciphers=None):
372 ciphers=ciphers)
    [all...]
  /external/curl/lib/vtls/
gskit.c 108 /* Supported ciphers. */
316 } ciphers[CURL_GSKPROTO_LAST]; local
331 memset((char *) ciphers, 0, sizeof ciphers);
333 ciphers[i].buf = malloc(l);
334 if(!ciphers[i].buf) {
336 free(ciphers[i].buf);
339 ciphers[i].ptr = ciphers[i].buf;
340 *ciphers[i].ptr = '\0'
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_common.c     [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_server.h 37 int tlsv1_server_set_cipher_list(struct tlsv1_server *conn, u8 *ciphers);

Completed in 1064 milliseconds

1 2 3 4 5