Searched refs:arc4_crypt (Results 1 – 10 of 10) sorted by relevance
| /linux/lib/crypto/ |
| A D | arc4.c | 37 void arc4_crypt(struct arc4_ctx *ctx, u8 *out, const u8 *in, unsigned int len) in arc4_crypt() function 72 EXPORT_SYMBOL(arc4_crypt);
|
| /linux/drivers/net/ppp/ |
| A D | ppp_mppe.c | 154 arc4_crypt(&state->arc4, state->session_key, state->sha1_digest, in mppe_rekey() 392 arc4_crypt(&state->arc4, obuf, ibuf, isize); in mppe_compress() 566 arc4_crypt(&state->arc4, obuf, ibuf, 1); in mppe_decompress() 581 arc4_crypt(&state->arc4, obuf + 1, ibuf + 1, isize - 1); in mppe_decompress()
|
| /linux/include/crypto/ |
| A D | arc4.h | 21 void arc4_crypt(struct arc4_ctx *ctx, u8 *out, const u8 *in, unsigned int len);
|
| /linux/drivers/staging/rtl8723bs/core/ |
| A D | rtw_security.c | 76 arc4_crypt(ctx, payload, payload, length); in rtw_wep_encrypt() 77 arc4_crypt(ctx, payload + length, crc.f1, 4); in rtw_wep_encrypt() 83 arc4_crypt(ctx, payload, payload, length); in rtw_wep_encrypt() 84 arc4_crypt(ctx, payload + length, crc.f1, 4); in rtw_wep_encrypt() 122 arc4_crypt(ctx, payload, payload, length); in rtw_wep_decrypt() 511 arc4_crypt(ctx, payload, payload, length); in rtw_tkip_encrypt() 512 arc4_crypt(ctx, payload + length, crc.f1, 4); in rtw_tkip_encrypt() 519 arc4_crypt(ctx, payload, payload, length); in rtw_tkip_encrypt() 520 arc4_crypt(ctx, payload + length, crc.f1, 4); in rtw_tkip_encrypt() 618 arc4_crypt(ctx, payload, payload, length); in rtw_tkip_decrypt()
|
| /linux/drivers/staging/rtl8192e/ |
| A D | rtllib_crypt_wep.c | 115 arc4_crypt(&wep->tx_ctx_arc4, pos, pos, len + 4); in prism2_wep_encrypt() 160 arc4_crypt(&wep->rx_ctx_arc4, pos, pos, plen + 4); in prism2_wep_decrypt()
|
| A D | rtllib_crypt_tkip.c | 313 arc4_crypt(&tkey->tx_ctx_arc4, pos, pos, len + 4); in rtllib_tkip_encrypt() 399 arc4_crypt(&tkey->rx_ctx_arc4, pos, pos, plen + 4); in rtllib_tkip_decrypt()
|
| /linux/net/wireless/ |
| A D | lib80211_crypt_wep.c | 139 arc4_crypt(&wep->tx_ctx, pos, pos, len + 4); in lib80211_wep_encrypt() 178 arc4_crypt(&wep->rx_ctx, pos, pos, plen + 4); in lib80211_wep_decrypt()
|
| A D | lib80211_crypt_tkip.c | 358 arc4_crypt(&tkey->tx_ctx_arc4, pos, pos, len + 4); in lib80211_tkip_encrypt() 440 arc4_crypt(&tkey->rx_ctx_arc4, pos, pos, plen + 4); in lib80211_tkip_decrypt()
|
| /linux/crypto/ |
| A D | arc4.c | 37 arc4_crypt(ctx, dst, src, nbytes); in crypto_arc4_crypt()
|
| /linux/net/mac80211/ |
| A D | wep.c | 118 arc4_crypt(ctx, data, data, data_len + IEEE80211_WEP_ICV_LEN); in ieee80211_wep_encrypt_data() 172 arc4_crypt(ctx, data, data, data_len + IEEE80211_WEP_ICV_LEN); in ieee80211_wep_decrypt_data()
|
Completed in 23 milliseconds