Searched defs:in_group_flags (Results 1 - 4 of 4) sorted by relevance

/external/boringssl/src/ssl/
H A Ds3_lib.c641 /* in_group_flags will either be NULL, or will point to an array of bytes
643 * comment about |in_group_flags| in the |ssl_cipher_preference_list_st|
645 const uint8_t *in_group_flags; local
652 in_group_flags = server_pref->in_group_flags;
656 in_group_flags = NULL;
678 if (in_group_flags != NULL && in_group_flags[i] == 1) {
693 if (in_group_flags != NULL && in_group_flags[
[all...]
H A Dssl_cipher.c1205 uint8_t *in_group_flags = NULL; local
1309 in_group_flags = OPENSSL_malloc(kCiphersLen);
1310 if (!in_group_flags) {
1321 in_group_flags[num_in_group_flags++] = curr->in_group;
1336 pref_list->in_group_flags = OPENSSL_malloc(num_in_group_flags);
1337 if (!pref_list->in_group_flags) {
1340 memcpy(pref_list->in_group_flags, in_group_flags, num_in_group_flags);
1341 OPENSSL_free(in_group_flags);
1342 in_group_flags
[all...]
/external/boringssl/include/openssl/
H A Dssl.h840 * |in_group_flags|. (That is, sk_SSL_CIPHER_num(ciphers) is the number of
841 * bytes in |in_group_flags|.) The bytes in |in_group_flags| are either 1, to
845 * For example, if |in_group_flags| contains all zeros then that indicates a
851 * in_group_flags: 1 1 0 0 1 0
861 uint8_t *in_group_flags; member in struct:ssl_cipher_preference_list_st
/external/boringssl/src/include/openssl/
H A Dssl.h840 * |in_group_flags|. (That is, sk_SSL_CIPHER_num(ciphers) is the number of
841 * bytes in |in_group_flags|.) The bytes in |in_group_flags| are either 1, to
845 * For example, if |in_group_flags| contains all zeros then that indicates a
851 * in_group_flags: 1 1 0 0 1 0
861 uint8_t *in_group_flags; member in struct:ssl_cipher_preference_list_st

Completed in 108 milliseconds