Home | History | Annotate | Download | only in common

Lines Matching refs:ciphers

1771 int rsn_cipher_put_suites(u8 *start, int ciphers)
1775 if (ciphers & WPA_CIPHER_CCMP_256) {
1779 if (ciphers & WPA_CIPHER_GCMP_256) {
1783 if (ciphers & WPA_CIPHER_CCMP) {
1787 if (ciphers & WPA_CIPHER_GCMP) {
1791 if (ciphers & WPA_CIPHER_TKIP) {
1795 if (ciphers & WPA_CIPHER_NONE) {
1804 int wpa_cipher_put_suites(u8 *start, int ciphers)
1808 if (ciphers & WPA_CIPHER_CCMP) {
1812 if (ciphers & WPA_CIPHER_TKIP) {
1816 if (ciphers & WPA_CIPHER_NONE) {
1825 int wpa_pick_pairwise_cipher(int ciphers, int none_allowed)
1827 if (ciphers & WPA_CIPHER_CCMP_256)
1829 if (ciphers & WPA_CIPHER_GCMP_256)
1831 if (ciphers & WPA_CIPHER_CCMP)
1833 if (ciphers & WPA_CIPHER_GCMP)
1835 if (ciphers & WPA_CIPHER_TKIP)
1837 if (none_allowed && (ciphers & WPA_CIPHER_NONE))
1843 int wpa_pick_group_cipher(int ciphers)
1845 if (ciphers & WPA_CIPHER_CCMP_256)
1847 if (ciphers & WPA_CIPHER_GCMP_256)
1849 if (ciphers & WPA_CIPHER_CCMP)
1851 if (ciphers & WPA_CIPHER_GCMP)
1853 if (ciphers & WPA_CIPHER_GTK_NOT_USED)
1855 if (ciphers & WPA_CIPHER_TKIP)
1914 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim)
1919 if (ciphers & WPA_CIPHER_CCMP_256) {
1926 if (ciphers & WPA_CIPHER_GCMP_256) {
1933 if (ciphers & WPA_CIPHER_CCMP) {
1940 if (ciphers & WPA_CIPHER_GCMP) {
1947 if (ciphers & WPA_CIPHER_TKIP) {
1954 if (ciphers & WPA_CIPHER_NONE) {