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

1 2 3 4

  /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
  /external/chromium_org/third_party/openssl/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;
  /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;
  /external/chromium_org/third_party/tlslite/tlslite/
constants.py 117 def getSrpSuites(ciphers):
119 for cipher in ciphers:
133 def getSrpRsaSuites(ciphers):
135 for cipher in ciphers:
150 def getRsaSuites(ciphers):
152 for cipher in 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...]
  /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 1180 int rsn_cipher_put_suites(u8 *pos, int ciphers)
1184 if (ciphers & WPA_CIPHER_CCMP) {
1189 if (ciphers & WPA_CIPHER_GCMP) {
1194 if (ciphers & WPA_CIPHER_TKIP) {
1199 if (ciphers & WPA_CIPHER_NONE) {
1209 int wpa_cipher_put_suites(u8 *pos, int ciphers)
1213 if (ciphers & WPA_CIPHER_CCMP) {
1218 if (ciphers & WPA_CIPHER_TKIP) {
1223 if (ciphers & WPA_CIPHER_NONE) {
1233 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed
    [all...]
  /external/chromium_org/third_party/openssl/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/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/chromium_org/third_party/libjingle/source/talk/base/
nssstreamadapter.h 91 virtual bool SetDtlsSrtpCiphers(const std::vector<std::string>& ciphers);
sslstreamadapter.h 164 virtual bool SetDtlsSrtpCiphers(const std::vector<std::string>& ciphers) {
opensslstreamadapter.h 110 virtual bool SetDtlsSrtpCiphers(const std::vector<std::string>& ciphers);
204 // The DtlsSrtp ciphers
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportchannel.h 107 // Set up the ciphers to use for DTLS-SRTP.
108 virtual bool SetSrtpCiphers(const std::vector<std::string>& ciphers) {
transportchannelproxy.h 72 virtual bool SetSrtpCiphers(const std::vector<std::string>& ciphers);
  /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++)

Completed in 1618 milliseconds

1 2 3 4