Home
last modified time | relevance | path

Searched refs:arc4 (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/drivers/net/ppp/
Dppp_mppe.c97 struct crypto_blkcipher *arc4; member
164 struct blkcipher_desc desc = { .tfm = state->arc4 }; in mppe_rekey()
168 crypto_blkcipher_setkey(state->arc4, state->sha1_digest, in mppe_rekey()
187 crypto_blkcipher_setkey(state->arc4, state->session_key, state->keylen); in mppe_rekey()
207 state->arc4 = crypto_alloc_blkcipher("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()
245 if (state->arc4) in mppe_alloc()
246 crypto_free_blkcipher(state->arc4); in mppe_alloc()
263 if (state->arc4) in mppe_free()
[all …]
/linux-4.4.14/crypto/
DMakefile92 obj-$(CONFIG_CRYPTO_ARC4) += arc4.o
/linux-4.4.14/drivers/crypto/
Dn2_core.c653 u8 arc4[258]; /* S-box, X, Y */ member
794 u8 *s = ctx->key.arc4; in n2_arc4_setkey()