/linux-4.4.14/crypto/ |
H A D | arc4.c | 119 .cra_name = "arc4", 134 .cra_name = "ecb(arc4)", 169 MODULE_ALIAS_CRYPTO("arc4");
|
H A D | Makefile | 92 obj-$(CONFIG_CRYPTO_ARC4) += arc4.o
|
H A D | tcrypt.c | 72 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea", 1364 ret += tcrypt_test("ecb(arc4)"); do_test() 1746 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, do_test() 2113 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, do_test()
|
H A D | testmgr.c | 2947 .alg = "ecb(arc4)",
|
/linux-4.4.14/drivers/net/ppp/ |
H A D | ppp_mppe.c | 37 * Use Linux kernel 2.6 arc4 and sha1 routines rather than 97 struct crypto_blkcipher *arc4; member in struct:ppp_mppe_state 164 struct blkcipher_desc desc = { .tfm = state->arc4 }; mppe_rekey() 168 crypto_blkcipher_setkey(state->arc4, state->sha1_digest, mppe_rekey() 187 crypto_blkcipher_setkey(state->arc4, state->session_key, state->keylen); mppe_rekey() 207 state->arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); mppe_alloc() 208 if (IS_ERR(state->arc4)) { mppe_alloc() 209 state->arc4 = NULL; mppe_alloc() 245 if (state->arc4) mppe_alloc() 246 crypto_free_blkcipher(state->arc4); mppe_alloc() 263 if (state->arc4) mppe_free() 264 crypto_free_blkcipher(state->arc4); mppe_free() 371 struct blkcipher_desc desc = { .tfm = state->arc4 }; mppe_compress() 478 struct blkcipher_desc desc = { .tfm = state->arc4 }; mppe_decompress() 709 * Prior to allowing load, try to load the arc4 and sha1 crypto 717 if (!(crypto_has_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC) && ppp_mppe_init()
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
H A D | rtllib_crypt_wep.c | 45 priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init() 47 pr_debug("rtllib_crypt_wep: could not allocate crypto API arc4\n"); prism2_wep_init() 51 priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init() 53 pr_debug("rtllib_crypt_wep: could not allocate crypto API arc4\n"); prism2_wep_init()
|
H A D | rtllib_crypt_tkip.c | 68 priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, rtllib_tkip_init() 71 pr_debug("Could not allocate crypto API arc4\n"); rtllib_tkip_init() 84 priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, rtllib_tkip_init() 87 pr_debug("Could not allocate crypto API arc4\n"); rtllib_tkip_init()
|
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/ |
H A D | ieee80211_crypt_wep.c | 49 priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init() 52 priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init()
|
H A D | ieee80211_crypt_tkip.c | 73 priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, ieee80211_tkip_init() 77 "crypto API arc4\n"); ieee80211_tkip_init() 91 priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, ieee80211_tkip_init() 95 "crypto API arc4\n"); ieee80211_tkip_init()
|
/linux-4.4.14/net/wireless/ |
H A D | lib80211_crypt_wep.c | 51 priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); lib80211_wep_init() 57 priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); lib80211_wep_init()
|
H A D | lib80211_crypt_tkip.c | 101 priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, lib80211_tkip_init() 115 priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, lib80211_tkip_init()
|
/linux-4.4.14/net/mac80211/ |
H A D | wep.c | 33 local->wep_tx_tfm = crypto_alloc_cipher("arc4", 0, CRYPTO_ALG_ASYNC); ieee80211_wep_init() 39 local->wep_rx_tfm = crypto_alloc_cipher("arc4", 0, CRYPTO_ALG_ASYNC); ieee80211_wep_init()
|
/linux-4.4.14/drivers/crypto/ |
H A D | n2_core.c | 653 u8 arc4[258]; /* S-box, X, Y */ member in union:n2_cipher_context::__anon3851 794 u8 *s = ctx->key.arc4; n2_arc4_setkey() 1123 { .name = "ecb(arc4)", 1124 .drv_name = "ecb-arc4",
|
/linux-4.4.14/fs/cifs/ |
H A D | cifsencrypt.c | 799 tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); calc_seckey() 802 cifs_dbg(VFS, "could not allocate crypto API arc4\n"); calc_seckey()
|
/linux-4.4.14/net/sunrpc/auth_gss/ |
H A D | gss_krb5_mech.c | 83 .encrypt_name = "ecb(arc4)",
|