HomeSort by relevance Sort by last modified time
    Searched defs:ciphers (Results 1 - 22 of 22) sorted by null

  /external/openssl/apps/
ciphers.c 1 /* apps/ciphers.c */
73 "usage: ciphers args\n",
74 " -v - verbose mode, a textual listing of the SSL/TLS ciphers in OpenSSL\n",
93 char *ciphers=NULL; local
143 ciphers= *argv;
160 if (ciphers != NULL) {
161 if(!SSL_CTX_set_cipher_list(ctx,ciphers)) {
  /external/chromium_org/third_party/libsrtp/srtp/
Makefile 77 ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \ macro
98 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
  /external/chromium_org/third_party/libsrtp/srtp/crypto/
Makefile 76 ciphers = cipher/cipher.o cipher/null_cipher.o \ macro
94 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
  /external/openssl/crypto/engine/
eng_int.h 167 ENGINE_CIPHERS_PTR ciphers; member in struct:engine_st
eng_cryptodev.c 143 } ciphers[] = { variable in typeref:struct:__anon11967
235 * Find out what ciphers /dev/crypto will let us have a session for.
254 for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
255 if (ciphers[i].nid == NID_undef)
257 sess.cipher = ciphers[i].id;
258 sess.keylen = ciphers[i].keylen;
262 nids[count++] = ciphers[i].nid;
314 * Find the useable ciphers|digests from dev/crypto - this is the first
316 * can use for ciphers from this engine. We want to return
425 for (i = 0; ciphers[i].id; i++
    [all...]
  /external/srtp/
Makefile 75 ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \ macro
96 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
  /external/srtp/crypto/
Makefile 69 ciphers = cipher/cipher.o cipher/null_cipher.o \ macro
87 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ie.c 452 int ciphers, key_mgmt, res, version; local
582 ciphers = data.pairwise_cipher & wpa_auth->conf.rsn_pairwise;
584 ciphers = data.pairwise_cipher & wpa_auth->conf.wpa_pairwise;
585 if (!ciphers) {
601 if (ciphers & WPA_CIPHER_TKIP) {
638 sm->pairwise = wpa_pick_pairwise_cipher(ciphers, 0);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransportchannel_unittest.cc 158 // SRTP ciphers will be set only in the beginning.
161 std::vector<std::string> ciphers; local
162 ciphers.push_back(AES_CM_128_HMAC_SHA1_80);
163 ASSERT_TRUE((*it)->SetSrtpCiphers(ciphers));
454 // Check that we negotiated the right ciphers.
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ext.c 2079 SECItem ciphers = {siBuffer, NULL, 0}; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast.c 1442 u8 ciphers[5]; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_fast.c 411 u8 ciphers[5] = { local
439 ciphers) < 0) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel.cc 749 std::vector<std::string> ciphers; local
750 // We always use the default SRTP ciphers for RTCP, but we may use different
751 // ciphers for RTP depending on the media type.
753 GetSrtpCiphers(&ciphers);
755 GetSupportedDefaultCryptoSuites(&ciphers);
757 return tc->SetSrtpCiphers(ciphers);
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java 595 // see OpenSSL ciphers man page
613 List<String> ciphers local
615 NativeCrypto.SSL_set_cipher_lists(s, ciphers.toArray(new String[ciphers.size()]));
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface.c 3007 static const struct cipher_info ciphers[] = { variable in typeref:struct:cipher_info
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211.c 3705 u32 *ciphers; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
ssl.h 169 /* text strings for the ciphers */
189 /* These are used to specify which ciphers to use and not to use */
239 * ciphers normally not being used.
240 * Example: "RC4" will activate all ciphers using RC4 including ciphers
306 /* used to hold info on the particular ciphers used */
437 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ member in struct:ssl_session_st
763 * The values in |ciphers| are in one-to-one correspondence with
764 * |in_group_flags|. (That is, sk_SSL_CIPHER_num(ciphers) is the number o
785 STACK_OF(SSL_CIPHER) *ciphers; member in struct:ssl_cipher_preference_list_st
    [all...]
  /external/openssl/include/openssl/
ssl.h 179 /* text strings for the ciphers */
225 /* These are used to specify which ciphers to use and not to use */
317 * ciphers normally not being used.
318 * Example: "RC4" will activate all ciphers using RC4 including ciphers
388 /* used to hold info on the particular ciphers used */
525 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ member in struct:ssl_session_st
    [all...]
  /external/openssl/ssl/
ssl.h 179 /* text strings for the ciphers */
225 /* These are used to specify which ciphers to use and not to use */
317 * ciphers normally not being used.
318 * Example: "RC4" will activate all ciphers using RC4 including ciphers
388 /* used to hold info on the particular ciphers used */
525 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ member in struct:ssl_session_st
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.security_1.2.0.v20130424-1801.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.security_1.2.0.v20130424-1801.jar 

Completed in 550 milliseconds