HomeSort by relevance Sort by last modified time
    Searched full:ssl_cipher (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/openssl/openssl/patches/
use_aead_for_aes_gcm.patch 17 #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers)/sizeof(SSL_CIPHER))
20 + * fixed nonce length in SSL_CIPHER.algorithms2. It's the inverse of
25 OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
27 @@ -1836,7 +1841,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
36 @@ -1868,7 +1873,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
45 @@ -1900,7 +1905,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
54 @@ -1932,7 +1937,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
63 @@ -1964,7 +1969,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
72 @@ -1996,7 +2001,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
81 @@ -2709,7 +2714,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]=
    [all...]
aead_ssl_support.patch 202 + const SSL_CIPHER *c = s->cipher;
225 const SSL_CIPHER *c;
299 +/* SSL_CIPHER_ALGORITHM2_AEAD is a flag in SSL_CIPHER.algorithm2 which
304 + * for an SSL_CIPHER* with the SSL_CIPHER_ALGORITHM2_AEAD flag. */
305 +#define SSL_CIPHER_AEAD_FIXED_NONCE_LEN(ssl_cipher) \
306 + (((ssl_cipher->algorithm2 >> 24) & 0xf)*2)
328 @@ -834,8 +853,10 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *meth,
329 STACK_OF(SSL_CIPHER) **sorted,
jsse.patch 25 +int SSL_set_cipher_lists(SSL *s, STACK_OF(SSL_CIPHER) *sk);
185 @@ -1652,6 +1652,52 @@ int SSL_CIPHER_get_bits(const SSL_CIPHER
190 +const char* SSL_CIPHER_authentication_method(const SSL_CIPHER* cipher)
263 +int SSL_set_cipher_lists(SSL *s,STACK_OF(SSL_CIPHER) *sk)
265 + STACK_OF(SSL_CIPHER) *tmp_cipher_list;
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_locl.h 277 * Define the Bitmasks for SSL_CIPHER.algorithms.
280 * is for internal library use only, even though SSL_CIPHER.algorithms
384 /* SSL_CIPHER_ALGORITHM2_AEAD is a flag in SSL_CIPHER.algorithm2 which
389 * for an SSL_CIPHER* with the SSL_CIPHER_ALGORITHM2_AEAD flag. */
390 #define SSL_CIPHER_AEAD_FIXED_NONCE_LEN(ssl_cipher) \
391 (((ssl_cipher->algorithm2 >> 24) & 0xf)*2)
394 * SSL_CIPHER.algorithm2 which indicates that the variable part of the nonce is
645 OPENSSL_EXTERN const SSL_CIPHER ssl2_ciphers[];
646 OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[];
852 int ssl_cipher_id_cmp(const SSL_CIPHER *a,const SSL_CIPHER *b)
    [all...]
s23_lib.c 77 const SSL_CIPHER *ssl23_get_cipher(unsigned int u)
93 const SSL_CIPHER *ssl23_get_cipher_by_char(const unsigned char *p)
95 const SSL_CIPHER *cp;
105 int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p)
s2_lib.c 121 #define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))
124 OPENSSL_GLOBAL const SSL_CIPHER ssl2_ciphers[]={
306 const SSL_CIPHER *ssl2_get_cipher(unsigned int u)
419 const SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p)
421 SSL_CIPHER c;
422 const SSL_CIPHER *cp;
435 int ssl2_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p)
ssl_ciph.c 220 const SSL_CIPHER *cipher;
226 static const SSL_CIPHER cipher_aliases[]={
517 const SSL_CIPHER *c = s->cipher;
545 const SSL_CIPHER *c;
826 const SSL_CIPHER *c;
892 static void ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list,
900 const SSL_CIPHER **ca_curr;
954 *ca_curr = (SSL_CIPHER *)(cipher_aliases + i);
970 const SSL_CIPHER *cp;
    [all...]
ssl_lib.c 260 STACK_OF(SSL_CIPHER) *sk;
1223 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1234 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
1235 const SSL_CIPHER * const *bp)
    [all...]
ssl.h 368 typedef struct ssl_cipher_st SSL_CIPHER;
371 DECLARE_STACK_OF(SSL_CIPHER)
383 typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg);
434 const SSL_CIPHER *(*get_cipher_by_char)(const unsigned char *ptr);
435 int (*put_cipher_by_char)(const SSL_CIPHER *cipher,unsigned char *ptr);
438 const SSL_CIPHER *(*get_cipher)(unsigned ncipher);
522 const SSL_CIPHER *cipher;
527 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */
795 STACK_OF(SSL_CIPHER) *cipher_list
    [all...]
s3_lib.c 167 #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers)/sizeof(SSL_CIPHER))
170 * fixed nonce length in SSL_CIPHER.algorithms2. It's the inverse of
175 OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
    [all...]
d1_lib.c 289 * there is no universal way to identify stream SSL_CIPHER, so we have
293 const SSL_CIPHER *dtls1_get_cipher(unsigned int u)
295 const SSL_CIPHER *ciph = ssl3_get_cipher(u);
  /external/openssl/ssl/
ssl_locl.h 277 * Define the Bitmasks for SSL_CIPHER.algorithms.
280 * is for internal library use only, even though SSL_CIPHER.algorithms
614 OPENSSL_EXTERN const SSL_CIPHER ssl2_ciphers[];
615 OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[];
823 int ssl_cipher_id_cmp(const SSL_CIPHER *a,const SSL_CIPHER *b);
824 DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER,
826 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
827 const SSL_CIPHER * const *bp)
    [all...]
s23_lib.c 77 const SSL_CIPHER *ssl23_get_cipher(unsigned int u)
93 const SSL_CIPHER *ssl23_get_cipher_by_char(const unsigned char *p)
95 const SSL_CIPHER *cp;
105 int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p)
s2_lib.c 121 #define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))
124 OPENSSL_GLOBAL const SSL_CIPHER ssl2_ciphers[]={
306 const SSL_CIPHER *ssl2_get_cipher(unsigned int u)
419 const SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p)
421 SSL_CIPHER c;
422 const SSL_CIPHER *cp;
435 int ssl2_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p)
ssl_ciph.c 220 const SSL_CIPHER *cipher;
226 static const SSL_CIPHER cipher_aliases[]={
491 const SSL_CIPHER *c;
785 const SSL_CIPHER *c;
851 static void ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list,
859 const SSL_CIPHER **ca_curr;
913 *ca_curr = (SSL_CIPHER *)(cipher_aliases + i);
929 const SSL_CIPHER *cp;
    [all...]
ssl_lib.c 260 STACK_OF(SSL_CIPHER) *sk;
    [all...]
ssl.h 367 typedef struct ssl_cipher_st SSL_CIPHER;
370 DECLARE_STACK_OF(SSL_CIPHER)
382 typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg);
431 const SSL_CIPHER *(*get_cipher_by_char)(const unsigned char *ptr);
432 int (*put_cipher_by_char)(const SSL_CIPHER *cipher,unsigned char *ptr);
435 const SSL_CIPHER *(*get_cipher)(unsigned ncipher);
519 const SSL_CIPHER *cipher;
524 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */
    [all...]
  /external/openssl/patches/
0003-jsse.patch 14 char * SSL_CIPHER_get_version(const SSL_CIPHER *c);
15 const char * SSL_CIPHER_get_name(const SSL_CIPHER *c);
16 unsigned long SSL_CIPHER_get_id(const SSL_CIPHER *c);
17 +const char * SSL_CIPHER_authentication_method(const SSL_CIPHER* cipher);
33 +int SSL_set_cipher_lists(SSL *s, STACK_OF(SSL_CIPHER) *sk);
193 @@ -1652,6 +1652,52 @@ int SSL_CIPHER_get_bits(const SSL_CIPHER
198 +const char* SSL_CIPHER_authentication_method(const SSL_CIPHER* cipher)
271 +int SSL_set_cipher_lists(SSL *s,STACK_OF(SSL_CIPHER) *sk)
273 + STACK_OF(SSL_CIPHER) *tmp_cipher_list;
0018-tls_fallback_scsv.patch 320 @@ -1441,6 +1441,8 @@ int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
329 @@ -1460,25 +1462,36 @@ int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
345 - static SSL_CIPHER scsv =
352 + static SSL_CIPHER scsv =
367 + static SSL_CIPHER scsv =
378 @@ -1488,11 +1501,12 @@ STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
379 const SSL_CIPHER *c;
380 STACK_OF(SSL_CIPHER) *sk;
392 @@ -1507,7 +1521,7 @@ STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
401 @@ -1527,6 +1541,22 @@ STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num
    [all...]
0016-ecdhe_psk_part2.patch 19 @@ -2828,35 +2828,34 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={
  /external/chromium_org/third_party/openssl/patches.chromium/
0009-stricter_cutthrough.patch 32 + const SSL_CIPHER *c;
  /external/chromium_org/third_party/openssl/openssl/apps/
ciphers.c 95 STACK_OF(SSL_CIPHER) *sk;
193 SSL_CIPHER *c;
  /external/openssl/apps/
ciphers.c 95 STACK_OF(SSL_CIPHER) *sk;
193 SSL_CIPHER *c;
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ssl.h 368 typedef struct ssl_cipher_st SSL_CIPHER;
371 DECLARE_STACK_OF(SSL_CIPHER)
383 typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg);
434 const SSL_CIPHER *(*get_cipher_by_char)(const unsigned char *ptr);
435 int (*put_cipher_by_char)(const SSL_CIPHER *cipher,unsigned char *ptr);
438 const SSL_CIPHER *(*get_cipher)(unsigned ncipher);
522 const SSL_CIPHER *cipher;
527 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */
795 STACK_OF(SSL_CIPHER) *cipher_list
    [all...]
  /external/openssl/include/openssl/
ssl.h 367 typedef struct ssl_cipher_st SSL_CIPHER;
370 DECLARE_STACK_OF(SSL_CIPHER)
382 typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg);
431 const SSL_CIPHER *(*get_cipher_by_char)(const unsigned char *ptr);
432 int (*put_cipher_by_char)(const SSL_CIPHER *cipher,unsigned char *ptr);
435 const SSL_CIPHER *(*get_cipher)(unsigned ncipher);
519 const SSL_CIPHER *cipher;
524 STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */
    [all...]

Completed in 375 milliseconds

1 2 3