Symbol: ARCFour_key
usr/src/common/crypto/arcfour/arcfour.h
45
void arcfour_key_init(ARCFour_key *key, uchar_t *keyval, int keyvallen);
usr/src/common/crypto/arcfour/arcfour.h
46
void arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len);
usr/src/common/crypto/arcfour/arcfour.h
50
void arcfour_crypt_aligned(ARCFour_key *key, size_t len, uchar_t *in,
usr/src/common/crypto/arcfour/arcfour.h
55
void arcfour_crypt_asm(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len);
usr/src/common/crypto/arcfour/arcfour_crypt.c
103
arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len)
usr/src/common/crypto/arcfour/arcfour_crypt.c
59
arcfour_key_init(ARCFour_key *key, uchar_t *keyval, int keyvallen)
usr/src/common/crypto/arcfour/sun4v/arcfour_crypt.c
30
arcfour_key_init(ARCFour_key *key, uchar_t *keyval, int keyvallen)
usr/src/common/crypto/arcfour/sun4v/arcfour_crypt.c
62
arcfour_crypt(ARCFour_key *key, uchar_t *in, uchar_t *out, size_t len)
usr/src/lib/pkcs11/pkcs11_softtoken/common/softARCFourCrypt.c
109
ARCFour_key *keystream = active_op->context;
usr/src/lib/pkcs11/pkcs11_softtoken/common/softARCFourCrypt.c
50
ARCFour_key *keystream;
usr/src/lib/pkcs11/pkcs11_softtoken/common/softARCFourCrypt.c
69
keystream = malloc(sizeof (ARCFour_key));
usr/src/lib/pkcs11/pkcs11_softtoken/common/softDecryptUtil.c
603
ARCFour_key *key = (ARCFour_key *)session_p->decrypt.context;
usr/src/lib/pkcs11/pkcs11_softtoken/common/softEncryptUtil.c
618
ARCFour_key *key = (ARCFour_key *)session_p->encrypt.context;
usr/src/lib/pkcs11/pkcs11_softtoken/common/softEncryptUtil.c
724
ARCFour_key *key = (ARCFour_key *)active_op->context;
usr/src/uts/common/crypto/io/arcfour.c
147
static int crypto_arcfour_crypt(ARCFour_key *, uchar_t *, crypto_data_t *,
usr/src/uts/common/crypto/io/arcfour.c
204
ARCFour_key *keystream;
usr/src/uts/common/crypto/io/arcfour.c
220
if ((keystream = kmem_alloc(sizeof (ARCFour_key),
usr/src/uts/common/crypto/io/arcfour.c
253
ARCFour_key *key;
usr/src/uts/common/crypto/io/arcfour.c
521
ARCFour_key *keystream = ctx->cc_provider_private;
usr/src/uts/common/crypto/io/arcfour.c
524
bzero(keystream, sizeof (ARCFour_key));
usr/src/uts/common/crypto/io/arcfour.c
525
kmem_free(keystream, sizeof (ARCFour_key));
usr/src/uts/common/crypto/io/arcfour.c
535
crypto_arcfour_crypt(ARCFour_key *key, uchar_t *in, crypto_data_t *out,