ARCFour_key
void arcfour_key_init(ARCFour_key *key, uchar_t *keyval, int keyvallen);
void arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len);
void arcfour_crypt_aligned(ARCFour_key *key, size_t len, uchar_t *in,
void arcfour_crypt_asm(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len);
arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len)
arcfour_key_init(ARCFour_key *key, uchar_t *keyval, int keyvallen)
arcfour_key_init(ARCFour_key *key, uchar_t *keyval, int keyvallen)
arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len)
ARCFour_key *keystream = active_op->context;
ARCFour_key *keystream;
keystream = malloc(sizeof (ARCFour_key));
ARCFour_key *key = (ARCFour_key *)session_p->decrypt.context;
ARCFour_key *key = (ARCFour_key *)session_p->encrypt.context;
ARCFour_key *key = (ARCFour_key *)active_op->context;
static int crypto_arcfour_crypt(ARCFour_key *, uchar_t *, crypto_data_t *,
ARCFour_key *keystream;
if ((keystream = kmem_alloc(sizeof (ARCFour_key),
ARCFour_key *key;
ARCFour_key *keystream = ctx->cc_provider_private;
bzero(keystream, sizeof (ARCFour_key));
kmem_free(keystream, sizeof (ARCFour_key));
crypto_arcfour_crypt(ARCFour_key *key, uchar_t *in, crypto_data_t *out,