Searched refs:mycontext (Results 1 – 1 of 1) sorted by relevance
/linux-6.1.9/drivers/staging/rtl8712/ |
D | rtl871x_security.c | 154 struct arc4context mycontext; in r8712_wep_encrypt() local 185 arcfour_init(&mycontext, wepkey, 3 + keylength); in r8712_wep_encrypt() 186 arcfour_encrypt(&mycontext, payload, payload, in r8712_wep_encrypt() 188 arcfour_encrypt(&mycontext, payload + length, in r8712_wep_encrypt() 196 arcfour_init(&mycontext, wepkey, 3 + keylength); in r8712_wep_encrypt() 197 arcfour_encrypt(&mycontext, payload, payload, in r8712_wep_encrypt() 199 arcfour_encrypt(&mycontext, payload + length, in r8712_wep_encrypt() 212 struct arc4context mycontext; in r8712_wep_decrypt() local 236 arcfour_init(&mycontext, wepkey, 3 + keylength); in r8712_wep_decrypt() 237 arcfour_encrypt(&mycontext, payload, payload, length); in r8712_wep_decrypt() [all …]
|