Lines Matching defs:lib80211_crypto_ops
43 struct lib80211_crypto_ops { struct
44 const char *name;
45 struct list_head list;
50 void *(*init) (int keyidx);
53 void (*deinit) (void *priv);
61 int (*encrypt_mpdu) (struct sk_buff * skb, int hdr_len, void *priv);
62 int (*decrypt_mpdu) (struct sk_buff * skb, int hdr_len, void *priv);
66 int (*encrypt_msdu) (struct sk_buff * skb, int hdr_len, void *priv);
67 int (*decrypt_msdu) (struct sk_buff * skb, int keyidx, int hdr_len,
70 int (*set_key) (void *key, int len, u8 * seq, void *priv);
94 struct lib80211_crypto_ops *ops; argument