Home | History | Annotate | Download | only in crypto

Lines Matching full:rc4

30 		} rc4;
64 if (key_len > sizeof(ctx->u.rc4.key)) {
68 ctx->u.rc4.keylen = key_len;
69 os_memcpy(ctx->u.rc4.key, key, key_len);
124 rc4_skip(ctx->u.rc4.key, ctx->u.rc4.keylen,
125 ctx->u.rc4.used_bytes, crypt, len);
126 ctx->u.rc4.used_bytes += len;
189 rc4_skip(ctx->u.rc4.key, ctx->u.rc4.keylen,
190 ctx->u.rc4.used_bytes, plain, len);
191 ctx->u.rc4.used_bytes += len;