1STRUCT KEY_PARAMS(9) Actions and configuration STRUCT KEY_PARAMS(9)
2
3
4
6 struct_key_params - key information
7
9 struct key_params {
10 const u8 * key;
11 const u8 * seq;
12 int key_len;
13 int seq_len;
14 u32 cipher;
15 };
16
18 key
19 key material
20
21 seq
22 sequence counter (IV/PN) for TKIP and CCMP keys, only used with the
23 get_key callback, must be in little endian, length given by
24 seq_len.
25
26 key_len
27 length of key material
28
29 seq_len
30 length of seq.
31
32 cipher
33 cipher suite selector
34
36 Information about a key
37
39 Johannes Berg <johannes@sipsolutions.net>
40 Author.
41
43Kernel Hackers Manual 3.10 June 2019 STRUCT KEY_PARAMS(9)