Home | History | Annotate | Download | only in common

Lines Matching full:ciphers

1489 int rsn_cipher_put_suites(u8 *start, int ciphers)
1493 if (ciphers & WPA_CIPHER_CCMP_256) {
1497 if (ciphers & WPA_CIPHER_GCMP_256) {
1501 if (ciphers & WPA_CIPHER_CCMP) {
1505 if (ciphers & WPA_CIPHER_GCMP) {
1509 if (ciphers & WPA_CIPHER_TKIP) {
1513 if (ciphers & WPA_CIPHER_NONE) {
1522 int wpa_cipher_put_suites(u8 *start, int ciphers)
1526 if (ciphers & WPA_CIPHER_CCMP) {
1530 if (ciphers & WPA_CIPHER_TKIP) {
1534 if (ciphers & WPA_CIPHER_NONE) {
1543 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed)
1545 if (ciphers & WPA_CIPHER_CCMP_256)
1547 if (ciphers & WPA_CIPHER_GCMP_256)
1549 if (ciphers & WPA_CIPHER_CCMP)
1551 if (ciphers & WPA_CIPHER_GCMP)
1553 if (ciphers & WPA_CIPHER_TKIP)
1555 if (none_allowed && (ciphers & WPA_CIPHER_NONE))
1561 int wpa_pick_group_cipher(int ciphers)
1563 if (ciphers & WPA_CIPHER_CCMP_256)
1565 if (ciphers & WPA_CIPHER_GCMP_256)
1567 if (ciphers & WPA_CIPHER_CCMP)
1569 if (ciphers & WPA_CIPHER_GCMP)
1571 if (ciphers & WPA_CIPHER_GTK_NOT_USED)
1573 if (ciphers & WPA_CIPHER_TKIP)
1632 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim)
1637 if (ciphers & WPA_CIPHER_CCMP_256) {
1644 if (ciphers & WPA_CIPHER_GCMP_256) {
1651 if (ciphers & WPA_CIPHER_CCMP) {
1658 if (ciphers & WPA_CIPHER_GCMP) {
1665 if (ciphers & WPA_CIPHER_TKIP) {
1672 if (ciphers & WPA_CIPHER_NONE) {