| /kernel/linux/linux-5.10/crypto/ |
| D | arc4.c | 5 * ARC4 Cipher Algorithm 11 #include <crypto/arc4.h> 46 pr_warn_ratelimited("\"%s\" (%ld) uses obsolete ecb(arc4) skcipher\n", in crypto_arc4_init() 54 * For legacy reasons, this is named "ecb(arc4)", not "arc4". 57 .base.cra_name = "ecb(arc4)", 58 .base.cra_driver_name = "ecb(arc4)-generic", 85 MODULE_DESCRIPTION("ARC4 Cipher Algorithm"); 87 MODULE_ALIAS_CRYPTO("ecb(arc4)");
|
| /kernel/linux/linux-4.19/drivers/net/ppp/ |
| D | ppp_mppe.c | 37 * Use Linux kernel 2.6 arc4 and sha1 routines rather than 66 MODULE_SOFTDEP("pre: arc4"); 99 struct crypto_skcipher *arc4; member 159 SKCIPHER_REQUEST_ON_STACK(req, state->arc4); in mppe_rekey() 161 skcipher_request_set_tfm(req, state->arc4); in mppe_rekey() 166 crypto_skcipher_setkey(state->arc4, state->sha1_digest, in mppe_rekey() 185 crypto_skcipher_setkey(state->arc4, state->session_key, state->keylen); in mppe_rekey() 207 state->arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in mppe_alloc() 208 if (IS_ERR(state->arc4)) { in mppe_alloc() 209 state->arc4 = NULL; in mppe_alloc() [all …]
|
| /kernel/linux/linux-4.19/crypto/ |
| D | arc4.c | 4 * ARC4 Cipher Algorithm 119 .cra_name = "arc4", 134 .cra_name = "ecb(arc4)", 167 MODULE_DESCRIPTION("ARC4 Cipher Algorithm"); 169 MODULE_ALIAS_CRYPTO("arc4");
|
| /kernel/linux/linux-5.10/drivers/net/ppp/ |
| D | ppp_mppe.c | 37 * Use Linux kernel 2.6 arc4 and sha1 routines rather than 45 #include <crypto/arc4.h> 92 struct arc4_ctx arc4; member 153 arc4_setkey(&state->arc4, state->sha1_digest, state->keylen); in mppe_rekey() 154 arc4_crypt(&state->arc4, state->session_key, state->sha1_digest, in mppe_rekey() 165 arc4_setkey(&state->arc4, state->session_key, state->keylen); 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() 655 * Prior to allowing load, try to load the arc4 and sha1 crypto
|
| /kernel/linux/linux-5.10/lib/crypto/ |
| D | arc4.c | 5 * ARC4 Cipher Algorithm 10 #include <crypto/arc4.h>
|
| D | Makefile | 11 libarc4-y := arc4.o
|
| /kernel/linux/linux-4.19/drivers/staging/rtl8192e/ |
| D | rtllib_crypt_wep.c | 44 priv->tx_tfm = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in prism2_wep_init() 46 pr_debug("rtllib_crypt_wep: could not allocate crypto API arc4\n"); in prism2_wep_init() 50 priv->rx_tfm = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in prism2_wep_init() 52 pr_debug("rtllib_crypt_wep: could not allocate crypto API arc4\n"); in prism2_wep_init()
|
| D | rtllib_crypt_tkip.c | 69 priv->tx_tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, in rtllib_tkip_init() 72 pr_debug("Could not allocate crypto API arc4\n"); in rtllib_tkip_init() 84 priv->rx_tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, in rtllib_tkip_init() 87 pr_debug("Could not allocate crypto API arc4\n"); in rtllib_tkip_init()
|
| /kernel/linux/linux-5.10/include/crypto/ |
| D | arc4.h | 3 * Common values for ARC4 Cipher Algorithm
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/crypto/ |
| D | samsung-sss.txt | 14 -- ARCFOUR (ARC4)
|
| D | fsl-sec2.txt | 21 bit 1 = set if SEC has the ARC4 EU (AFEU)
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/crypto/ |
| D | samsung-sss.yaml | 24 -- ARCFOUR (ARC4)
|
| D | fsl-sec2.txt | 21 bit 1 = set if SEC has the ARC4 EU (AFEU)
|
| /kernel/linux/linux-5.10/drivers/crypto/bcm/ |
| D | spu.h | 48 CIPHER_TYPE_INIT = 0x0, /* used for ARC4 */ 51 CIPHER_TYPE_UPDT = 0x1, /* used for ARC4 */
|
| /kernel/linux/linux-4.19/drivers/crypto/bcm/ |
| D | spu.h | 59 CIPHER_TYPE_INIT = 0x0, /* used for ARC4 */ 62 CIPHER_TYPE_UPDT = 0x1, /* used for ARC4 */
|
| /kernel/linux/linux-4.19/drivers/staging/rtl8192u/ieee80211/ |
| D | ieee80211_crypt_wep.c | 49 priv->tx_tfm = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in prism2_wep_init() 52 priv->rx_tfm = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in prism2_wep_init()
|
| D | ieee80211_crypt_tkip.c | 74 priv->tx_tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, in ieee80211_tkip_init() 78 "crypto API arc4\n"); in ieee80211_tkip_init() 91 priv->rx_tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, in ieee80211_tkip_init() 95 "crypto API arc4\n"); in ieee80211_tkip_init()
|
| /kernel/linux/linux-4.19/net/wireless/ |
| D | lib80211_crypt_wep.c | 51 priv->tx_tfm = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in lib80211_wep_init() 57 priv->rx_tfm = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in lib80211_wep_init()
|
| /kernel/linux/linux-4.19/Documentation/crypto/ |
| D | devel-algos.rst | 60 Example of transformations: aes, arc4, ... 111 Example of transformations: cbc(aes), ecb(arc4), ...
|
| D | api-intro.txt | 187 Jon Oberheide (ARC4)
|
| /kernel/linux/linux-4.19/net/mac80211/ |
| D | wep.c | 33 local->wep_tx_tfm = crypto_alloc_cipher("arc4", 0, CRYPTO_ALG_ASYNC); in ieee80211_wep_init() 39 local->wep_rx_tfm = crypto_alloc_cipher("arc4", 0, CRYPTO_ALG_ASYNC); in ieee80211_wep_init()
|
| /kernel/linux/linux-5.10/net/mac80211/ |
| D | key.h | 15 #include <crypto/arc4.h>
|
| /kernel/liteos_a/lib/libmbedtls/ |
| D | BUILD.gn | 38 "$LITEOSTHIRDPARTY/mbedtls/library/arc4.c",
|
| /kernel/linux/linux-4.19/fs/cifs/ |
| D | cifsencrypt.c | 782 tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); in calc_seckey() 785 cifs_dbg(VFS, "could not allocate crypto API arc4\n"); in calc_seckey() 800 cifs_dbg(VFS, "could not allocate crypto API arc4 request\n"); in calc_seckey()
|
| /kernel/linux/linux-5.10/arch/sh/kernel/cpu/sh4a/ |
| D | setup-sh7757.c | 795 ARC4, enumerator 850 INTC_VECT(ARC4, 0x620), 975 ARC4, 0, SPI1, JMC, 0, 0, 0, DVC 1070 { INT2PRI9, 0, 32, 8, { ARC4, 0, SPI1, JMC } },
|