Searched refs:ciphers (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-11.0-release/crypto/openssl/crypto/engine/
H A Dtb_cipher.c78 if (e->ciphers) {
80 int num_nids = e->ciphers(e, NULL, &nids, 0);
99 if (e->ciphers) {
101 int num_nids = e->ciphers(e, NULL, &nids, 0);
135 return e->ciphers;
141 e->ciphers = f;
H A Deng_cryptodev.c145 } ciphers[] = { variable in typeref:struct:__anon6317
282 * Find out what ciphers /dev/crypto will let us have a session for.
300 for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
301 if (ciphers[i].nid == NID_undef)
303 sess.cipher = ciphers[i].id;
304 sess.keylen = ciphers[i].keylen;
308 nids[count++] = ciphers[i].nid;
359 * Find the useable ciphers|digests from dev/crypto - this is the first
361 * can use for ciphers from this engine. We want to return
469 for (i = 0; ciphers[
[all...]
H A Deng_int.h187 ENGINE_CIPHERS_PTR ciphers; member in struct:engine_st
H A Deng_list.c312 dest->ciphers = src->ciphers;
/freebsd-11.0-release/crypto/openssh/regress/
H A Dtry-ciphers.sh1 # $OpenBSD: try-ciphers.sh,v 1.25 2015/03/24 20:22:17 markus Exp $
4 tid="try ciphers"
20 # No point trying all MACs for AEAD ciphers since they
30 ciphers="3des blowfish"
32 ciphers=""
34 for c in $ciphers; do
H A Dcipher-speed.sh27 # No point trying all MACs for AEAD ciphers since they are ignored.
35 ciphers="3des blowfish"
37 ciphers=""
39 for c in $ciphers; do
H A Dssh-com.sh90 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
H A DMakefile32 try-ciphers \
83 INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
/freebsd-11.0-release/crypto/openssl/apps/
H A Dciphers.c1 /* apps/ciphers.c */
73 "usage: ciphers args\n",
74 " -v - verbose mode, a textual listing of the SSL/TLS ciphers in OpenSSL\n",
96 char *ciphers = NULL; local
145 ciphers = *argv;
162 if (ciphers != NULL) {
163 if (!SSL_CTX_set_cipher_list(ctx, ciphers)) {
H A Dprogs.pl34 if (($_ =~ /^s_/) || ($_ =~ /^ciphers$/))
/freebsd-11.0-release/sys/net80211/
H A Dieee80211_crypto.c56 static const struct ieee80211_cipher *ciphers[IEEE80211_CIPHER_MAX]; variable in typeref:struct:ieee80211_cipher
144 ciphers[IEEE80211_CIPHER_NONE] = &ieee80211_cipher_none;
200 if (ciphers[cip->ic_cipher] != NULL && ciphers[cip->ic_cipher] != cip) {
205 ciphers[cip->ic_cipher] = cip;
219 if (ciphers[cip->ic_cipher] != NULL && ciphers[cip->ic_cipher] != cip) {
226 ciphers[cip->ic_cipher] = NULL;
232 return cipher < IEEE80211_CIPHER_MAX && ciphers[cipher] != NULL;
284 cip = ciphers[ciphe
[all...]
/freebsd-11.0-release/contrib/wpa/src/common/
H A Dwpa_common.c1448 int rsn_cipher_put_suites(u8 *start, int ciphers) argument
1452 if (ciphers & WPA_CIPHER_CCMP_256) {
1456 if (ciphers & WPA_CIPHER_GCMP_256) {
1460 if (ciphers & WPA_CIPHER_CCMP) {
1464 if (ciphers & WPA_CIPHER_GCMP) {
1468 if (ciphers & WPA_CIPHER_TKIP) {
1472 if (ciphers & WPA_CIPHER_NONE) {
1481 int wpa_cipher_put_suites(u8 *start, int ciphers) argument
1485 if (ciphers & WPA_CIPHER_CCMP) {
1489 if (ciphers
1502 wpa_pick_pairwise_cipher(int ciphers, int none_allowed) argument
1520 wpa_pick_group_cipher(int ciphers) argument
1591 wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim) argument
[all...]
H A Dwpa_common.h454 int rsn_cipher_put_suites(u8 *pos, int ciphers);
455 int wpa_cipher_put_suites(u8 *pos, int ciphers);
456 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed);
457 int wpa_pick_group_cipher(int ciphers);
459 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim);
/freebsd-11.0-release/contrib/wpa/src/tls/
H A Dtlsv1_client.h41 int tlsv1_client_set_cipher_list(struct tlsv1_client *conn, u8 *ciphers);
H A Dtlsv1_server.h37 int tlsv1_server_set_cipher_list(struct tlsv1_server *conn, u8 *ciphers);
/freebsd-11.0-release/secure/usr.bin/openssl/
H A DMakefile14 SRCS+= app_rand.c apps.c asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c \
H A DMakefile.man7 MAN+= ciphers.1
/freebsd-11.0-release/crypto/openssl/ssl/
H A Ds3_srvr.c914 STACK_OF(SSL_CIPHER) *ciphers = NULL;
1155 if (ssl_bytes_to_cipher_list(s, p, i, &(ciphers)) == NULL) {
1166 fprintf(stderr, "client sent %d ciphers\n",
1167 sk_SSL_CIPHER_num(ciphers));
1169 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1170 c = sk_SSL_CIPHER_value(ciphers, i);
1173 i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1186 && (sk_SSL_CIPHER_num(ciphers) == 1)) {
1194 c = sk_SSL_CIPHER_value(ciphers, 0);
1264 &s->session->master_key_length, ciphers,
[all...]
H A Dssl_sess.c252 dest->ciphers = NULL;
293 if(src->ciphers != NULL) {
294 dest->ciphers = sk_SSL_CIPHER_dup(src->ciphers);
295 if (dest->ciphers == NULL)
878 if (ss->ciphers != NULL)
879 sk_SSL_CIPHER_free(ss->ciphers);
H A Ds23_clnt.c264 STACK_OF(SSL_CIPHER) *ciphers;
266 ciphers = SSL_get_ciphers(s);
267 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
268 cipher = sk_SSL_CIPHER_value(ciphers, i);
439 /* no ciphers */
514 * workaround chop number of supported ciphers to keep it well
/freebsd-11.0-release/contrib/wpa/src/crypto/
H A Dtls_none.c138 u8 *ciphers)
137 tls_connection_set_cipher_list(void *tls_ctx, struct tls_connection *conn, u8 *ciphers) argument
H A Dtls_internal.c607 u8 *ciphers)
611 return tlsv1_client_set_cipher_list(conn->client, ciphers);
615 return tlsv1_server_set_cipher_list(conn->server, ciphers);
606 tls_connection_set_cipher_list(void *tls_ctx, struct tls_connection *conn, u8 *ciphers) argument
/freebsd-11.0-release/crypto/openssh/
H A Dreadconf.h74 char *ciphers; /* SSH2 ciphers in order of preference. */ member in struct:__anon6132
H A Dcipher.c80 static const struct sshcipher ciphers[] = { variable in typeref:struct:sshcipher
124 /* Returns a comma-separated list of supported ciphers. */
132 for (c = ciphers; c->name != NULL; c++) {
216 for (c = ciphers; c->name != NULL; c++)
226 for (c = ciphers; c->name != NULL; c++)
267 for (c = ciphers; c->name != NULL; c++)
H A Dservconf.h93 char *ciphers; /* Supported SSH2 ciphers. */ member in struct:__anon6143

Completed in 162 milliseconds

123