/external/boringssl/src/tool/ |
ciphers.cc | 28 bool Ciphers(const std::vector<std::string> &args) { 30 fprintf(stderr, "Usage: bssl ciphers <cipher suite string>\n"); 44 STACK_OF(SSL_CIPHER) *ciphers = pref_list->ciphers; 47 for (size_t i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) { 49 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i);
|
CMakeLists.txt | 7 ciphers.cc
|
/external/curl/docs/ |
SSL-PROBLEMS | 39 SSL ciphers 41 Clients give servers a list of ciphers to select from. If the list doesn't 42 include any ciphers the server wants/can use, the connection handshake 46 ciphers from its default set (slightly depending on SSL backend in use). 48 You may have to explicitly provide an alternative list of ciphers for curl 51 Note that these weak ciphers are identified as flawed. For example, this 52 includes symmetric ciphers with less than 128 bit keys and RC4.
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_SSL_CIPHER_LIST.3 | 25 CURLOPT_SSL_CIPHER_LIST \- specify ciphers to use for TLS 32 ciphers to use for the SSL connection. The list must be syntactically correct, 43 http://www.openssl.org/docs/apps/ciphers.html 46 \'rsa_aes_128_sha\', etc. With NSS you don't add/remove ciphers. If one uses 47 this option then all known ciphers are disabled and only those passed in are
|
/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...] |
dtlstransportchannel.h | 126 // Set up the ciphers to use for DTLS-SRTP. If this method is not called 127 // before DTLS starts, or |ciphers| is empty, SRTP keys won't be negotiated. 129 bool SetSrtpCryptoSuites(const std::vector<int>& ciphers) override; 227 std::vector<int> srtp_ciphers_; // SRTP ciphers to use with DTLS.
|
/external/wpa_supplicant_8/src/crypto/ |
des_i.h | 2 * DES and 3DES-EDE ciphers
|
/external/srtp/doc/ |
crypto_kernel.txt | 11 @defgroup CipherImplementations Ciphers 16 Ciphers can be used through the crypto kernel, or can be accessed
|
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
SkippingCipher.java | 4 * Ciphers producing a key stream which can be reset to particular points in the stream implement this.
|
StreamCipher.java | 4 * the interface stream ciphers conform to.
|
/external/srtp/crypto/include/ |
crypto.h | 23 * @ingroup Ciphers
|
/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/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);
|
/external/boringssl/src/ssl/ |
ssl_test.cc | 41 // The list of expected ciphers, in order, terminated with -1. 45 // Selecting individual ciphers should work. 62 // + reorders selected ciphers to the end, keeping their relative 81 // ! banishes ciphers from future selections. 104 // - removes selected ciphers, but preserves their order for future 153 // ciphers and only the selected ciphers. 158 // Order some ciphers backwards by strength. 179 // Exact ciphers may not be used in multi-part rules; they are treated 295 for (size_t i = 0; i < sk_SSL_CIPHER_num(list->ciphers); i++) [all...] |
/external/lzma/DOC/ |
Methods.txt | 107 F0 - Ciphers without hashing algo
121 F1 - Combine Ciphers
|
/external/srtp/crypto/ |
Makefile | 69 ciphers = cipher/cipher.o cipher/null_cipher.o \ macro 87 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
|
Makefile.in | 69 ciphers = cipher/cipher.o cipher/null_cipher.o \ 87 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
|
/libcore/ojluni/src/main/java/javax/crypto/spec/ |
IvParameterSpec.java | 32 * Examples which use IVs are ciphers in feedback mode, 33 * e.g., DES in CBC mode and RSA ciphers with OAEP encoding
|
/external/srtp/ |
README | 49 crypto/ciphers/ ciphers (null, aes_icm, ...) 67 kernel_driver crypto kernel (ciphers, auth funcs, rng) 72 cipher_driver ciphers
|