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

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
BlockCipherFactory.java 35 private static final List<CipherEntry> ciphers = new Vector<CipherEntry>(); field in class:BlockCipherFactory
40 ciphers.add(new CipherEntry("aes128-ctr", 16, 16, "ch.ethz.ssh2.crypto.cipher.AES"));
41 ciphers.add(new CipherEntry("aes192-ctr", 16, 24, "ch.ethz.ssh2.crypto.cipher.AES"));
42 ciphers.add(new CipherEntry("aes256-ctr", 16, 32, "ch.ethz.ssh2.crypto.cipher.AES"));
43 ciphers.add(new CipherEntry("blowfish-ctr", 8, 16, "ch.ethz.ssh2.crypto.cipher.BlowFish"));
45 ciphers.add(new CipherEntry("aes128-cbc", 16, 16, "ch.ethz.ssh2.crypto.cipher.AES"));
46 ciphers.add(new CipherEntry("aes192-cbc", 16, 24, "ch.ethz.ssh2.crypto.cipher.AES"));
47 ciphers.add(new CipherEntry("aes256-cbc", 16, 32, "ch.ethz.ssh2.crypto.cipher.AES"));
48 ciphers.add(new CipherEntry("blowfish-cbc", 8, 16, "ch.ethz.ssh2.crypto.cipher.BlowFish"));
50 ciphers.add(new CipherEntry("3des-ctr", 8, 24, "ch.ethz.ssh2.crypto.cipher.DESede"))
    [all...]
  /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
149 ciphers= *argv;
166 if (ciphers != NULL) {
167 if(!SSL_CTX_set_cipher_list(ctx,ciphers)) {
  /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:__anon12597
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 382 int ciphers, key_mgmt, res, version; local
512 ciphers = data.pairwise_cipher & wpa_auth->conf.rsn_pairwise;
514 ciphers = data.pairwise_cipher & wpa_auth->conf.wpa_pairwise;
515 if (!ciphers) {
531 if (ciphers & WPA_CIPHER_TKIP) {
567 sm->pairwise = wpa_pick_pairwise_cipher(ciphers, 0);
  /external/openssh/
cipher.c 68 } ciphers[] = { variable in typeref:struct:Cipher
138 for (c = ciphers; c->name != NULL; c++)
148 for (c = ciphers; c->name != NULL; c++)
176 debug3("ciphers ok: [%s]", names);
192 for (c = ciphers; c->name != NULL; c++)
readconf.h 76 char *ciphers; /* SSH2 ciphers in order of preference. */ member in struct:__anon12452
servconf.h 81 char *ciphers; /* Supported SSH2 ciphers. */ member in struct:__anon12459
  /external/chromium/net/socket/
ssl_client_socket_mac.cc 475 const std::vector<SSLCipherSuite>& ciphers() const { return ciphers_; } function in class:net::__anon5147::EnabledCipherSuites
546 // Sort the list of ciphers to disable, since disabling ciphers on Mac
547 // requires subtracting from a list of enabled ciphers while maintaining
811 g_enabled_cipher_suites.Get().ciphers();
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast.c 1426 u8 ciphers[5]; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_fast.c 410 u8 ciphers[5] = { local
438 ciphers) < 0) {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java 569 // see OpenSSL ciphers man page
587 List<String> ciphers local
589 NativeCrypto.SSL_set_cipher_lists(s, ciphers.toArray(new String[ciphers.size()]));
    [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 */
316 * ciphers normally not being used.
317 * Example: "RC4" will activate all ciphers using RC4 including ciphers
387 /* used to hold info on the particular ciphers used */
524 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 */
316 * ciphers normally not being used.
317 * Example: "RC4" will activate all ciphers using RC4 including ciphers
387 /* used to hold info on the particular ciphers used */
524 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 

Completed in 529 milliseconds