/external/boringssl/src/tool/ |
ciphers.cc | 26 bool Ciphers(const std::vector<std::string> &args) { 28 fprintf(stderr, "Usage: bssl ciphers <cipher suite string>\n"); 42 STACK_OF(SSL_CIPHER) *ciphers = pref_list->ciphers; 45 for (size_t i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) { 47 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i);
|
/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);
|
/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...] |
/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 | 98 /* Supported ciphers. */ 305 } ciphers[CURL_GSKPROTO_LAST]; local 320 memset((char *) ciphers, 0, sizeof ciphers); 322 ciphers[i].buf = malloc(l); 323 if(!ciphers[i].buf) { 325 free(ciphers[i].buf); 328 ciphers[i].ptr = ciphers[i].buf; 329 *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);
|
tlsv1_client.h | 41 int tlsv1_client_set_cipher_list(struct tlsv1_client *conn, u8 *ciphers);
|
/external/libnl/python/examples/ |
wiphy.py | 83 ciphers = nl.nla_data(attr[nl80211.NL80211_ATTR_CIPHER_SUITES]) 84 num = len(ciphers) / 4 86 print("\tSupported Ciphers:"); 88 print("\t\t* %s" % cipher_name(ciphers[i:i+4]))
|
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/ |
netty-handler-4.1.6.Final.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.3.Final/ |
netty-handler-4.1.3.Final.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/ |
netty-handler-4.1.0.CR3.jar | |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_ssl.py | 171 cert_reqs=ssl.CERT_NONE, ciphers="ALL") 174 cert_reqs=ssl.CERT_NONE, ciphers="DEFAULT") 179 cert_reqs=ssl.CERT_NONE, ciphers="^$:,;?*'dorothyx") 443 ciphers=self.server.ciphers) 530 wrap_accepting_socket=False, ciphers=None): 540 self.ciphers = ciphers 552 ciphers = self.ciphers) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_ssl.py | 171 cert_reqs=ssl.CERT_NONE, ciphers="ALL") 174 cert_reqs=ssl.CERT_NONE, ciphers="DEFAULT") 179 cert_reqs=ssl.CERT_NONE, ciphers="^$:,;?*'dorothyx") 443 ciphers=self.server.ciphers) 530 wrap_accepting_socket=False, ciphers=None): 540 self.ciphers = ciphers 552 ciphers = self.ciphers) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ssl.py | 171 cert_reqs=ssl.CERT_NONE, ciphers="ALL") 174 cert_reqs=ssl.CERT_NONE, ciphers="DEFAULT") 179 cert_reqs=ssl.CERT_NONE, ciphers="^$:,;?*'dorothyx") 443 ciphers=self.server.ciphers) 530 wrap_accepting_socket=False, ciphers=None): 540 self.ciphers = ciphers 552 ciphers = self.ciphers) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ssl.py | 171 cert_reqs=ssl.CERT_NONE, ciphers="ALL") 174 cert_reqs=ssl.CERT_NONE, ciphers="DEFAULT") 179 cert_reqs=ssl.CERT_NONE, ciphers="^$:,;?*'dorothyx") 443 ciphers=self.server.ciphers) 530 wrap_accepting_socket=False, ciphers=None): 540 self.ciphers = ciphers 552 ciphers = self.ciphers) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_ssl.py | 159 cert_reqs=ssl.CERT_NONE, ciphers="ALL")
162 cert_reqs=ssl.CERT_NONE, ciphers="DEFAULT")
167 cert_reqs=ssl.CERT_NONE, ciphers="^$:,;?*'dorothyx")
402 ciphers=self.server.ciphers)
488 wrap_accepting_socket=False, ciphers=None):
498 self.ciphers = ciphers
510 ciphers = self.ciphers)
[all...] |
/external/openssh/ |
readconf.h | 73 char *ciphers; /* SSH2 ciphers in order of preference. */ member in struct:__anon28144
|