Lines Matching defs:ciphers

1435  * PASN frame. SHA-256 is used as the hash algorithm, except for the ciphers
3109 int rsn_cipher_put_suites(u8 *start, int ciphers)
3113 if (ciphers & WPA_CIPHER_CCMP_256) {
3117 if (ciphers & WPA_CIPHER_GCMP_256) {
3121 if (ciphers & WPA_CIPHER_CCMP) {
3125 if (ciphers & WPA_CIPHER_GCMP) {
3129 if (ciphers & WPA_CIPHER_TKIP) {
3133 if (ciphers & WPA_CIPHER_NONE) {
3142 int wpa_cipher_put_suites(u8 *start, int ciphers)
3146 if (ciphers & WPA_CIPHER_CCMP) {
3150 if (ciphers & WPA_CIPHER_TKIP) {
3154 if (ciphers & WPA_CIPHER_NONE) {
3163 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed)
3165 if (ciphers & WPA_CIPHER_CCMP_256)
3167 if (ciphers & WPA_CIPHER_GCMP_256)
3169 if (ciphers & WPA_CIPHER_CCMP)
3171 if (ciphers & WPA_CIPHER_GCMP)
3173 if (ciphers & WPA_CIPHER_TKIP)
3175 if (none_allowed && (ciphers & WPA_CIPHER_NONE))
3181 int wpa_pick_group_cipher(int ciphers)
3183 if (ciphers & WPA_CIPHER_CCMP_256)
3185 if (ciphers & WPA_CIPHER_GCMP_256)
3187 if (ciphers & WPA_CIPHER_CCMP)
3189 if (ciphers & WPA_CIPHER_GCMP)
3191 if (ciphers & WPA_CIPHER_GTK_NOT_USED)
3193 if (ciphers & WPA_CIPHER_TKIP)
3264 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim)
3269 if (ciphers & WPA_CIPHER_CCMP_256) {
3276 if (ciphers & WPA_CIPHER_GCMP_256) {
3283 if (ciphers & WPA_CIPHER_CCMP) {
3290 if (ciphers & WPA_CIPHER_GCMP) {
3297 if (ciphers & WPA_CIPHER_TKIP) {
3304 if (ciphers & WPA_CIPHER_AES_128_CMAC) {
3311 if (ciphers & WPA_CIPHER_BIP_GMAC_128) {
3318 if (ciphers & WPA_CIPHER_BIP_GMAC_256) {
3325 if (ciphers & WPA_CIPHER_BIP_CMAC_256) {
3332 if (ciphers & WPA_CIPHER_NONE) {