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

1 2 3

  /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/openssh/regress/
cipher-speed.sh 15 ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc
23 for c in $ciphers; do for m in $macs; do
38 ciphers="3des blowfish"
39 for c in $ciphers; do
try-ciphers.sh 1 # $OpenBSD: try-ciphers.sh,v 1.12 2011/08/02 01:23:41 djm Exp $
4 tid="try ciphers"
6 ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc
14 for c in $ciphers; do
25 ciphers="3des blowfish"
26 for c in $ciphers; do
40 echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
ssh-com.sh 40 Ciphers AnyCipher
90 ciphers="3des-cbc blowfish-cbc arcfour"
94 ciphers="$ciphers cast128-cbc"
98 ciphers="$ciphers aes128-cbc cast128-cbc"
102 #ciphers="3des-cbc"
104 for c in $ciphers; do
Makefile 28 try-ciphers \
62 INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
  /external/openssl/crypto/engine/
tb_cipher.c 76 if(e->ciphers)
79 int num_nids = e->ciphers(e, NULL, &nids, 0);
98 if(e->ciphers)
101 int num_nids = e->ciphers(e, NULL, &nids, 0);
135 return e->ciphers;
141 e->ciphers = f;
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...]
eng_int.h 167 ENGINE_CIPHERS_PTR ciphers; member in struct:engine_st
eng_list.c 337 dest->ciphers = src->ciphers;
  /external/dropbear/libtomcrypt/
Android.mk 9 src/ciphers/aes/aes.c src/ciphers/anubis.c src/ciphers/blowfish.c \
10 src/ciphers/cast5.c src/ciphers/des.c src/ciphers/kasumi.c src/ciphers/khazad.c src/ciphers/kseed.c \
11 src/ciphers/noekeon.c src/ciphers/rc2.c src/ciphers/rc5.c src/ciphers/rc6.c src/ciphers/safer/safer.c
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_common.c 1186 int rsn_cipher_put_suites(u8 *pos, int ciphers)
1190 if (ciphers & WPA_CIPHER_CCMP) {
1195 if (ciphers & WPA_CIPHER_GCMP) {
1200 if (ciphers & WPA_CIPHER_TKIP) {
1205 if (ciphers & WPA_CIPHER_NONE) {
1215 int wpa_cipher_put_suites(u8 *pos, int ciphers)
1219 if (ciphers & WPA_CIPHER_CCMP) {
1224 if (ciphers & WPA_CIPHER_TKIP) {
1229 if (ciphers & WPA_CIPHER_NONE) {
1239 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed
    [all...]
wpa_common.h 398 int rsn_cipher_put_suites(u8 *pos, int ciphers);
399 int wpa_cipher_put_suites(u8 *pos, int ciphers);
400 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed);
401 int wpa_pick_group_cipher(int ciphers);
403 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim);
  /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)) {
progs.pl 34 if (($_ =~ /^s_/) || ($_ =~ /^ciphers$/))
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java     [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.h 41 int tlsv1_client_set_cipher_list(struct tlsv1_client *conn, u8 *ciphers);
tlsv1_server.h 37 int tlsv1_server_set_cipher_list(struct tlsv1_server *conn, u8 *ciphers);
  /external/srtp/crypto/
Makefile 69 ciphers = cipher/cipher.o cipher/null_cipher.o \ macro
87 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
  /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/wpa_supplicant_8/src/crypto/
tls_none.c 137 u8 *ciphers)
  /external/openssl/ssl/
s3_srvr.c 939 STACK_OF(SSL_CIPHER) *ciphers=NULL;
1117 if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers))
1131 printf("client sent %d ciphers\n",sk_num(ciphers));
1133 for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++)
1135 c=sk_SSL_CIPHER_value(ciphers,i);
1138 i,sk_num(ciphers),SSL_CIPHER_get_name(c));
1150 if (j == 0 && (s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1))
1157 c = sk_SSL_CIPHER_value(ciphers, 0);
    [all...]
  /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/openssl/
Apps-config.mk 37 apps/ciphers.c \

Completed in 996 milliseconds

1 2 3