sys/crypto/cast.c
134
cast_setkey(cast_key *key, u_int8_t *rawkey, int keybytes)
sys/crypto/cast.c
42
cast_encrypt(cast_key *key, u_int8_t *inblock, u_int8_t *outblock)
sys/crypto/cast.c
88
cast_decrypt(cast_key *key, u_int8_t *inblock, u_int8_t *outblock)
sys/crypto/cast.h
18
void cast_setkey(cast_key * key, u_int8_t * rawkey, int keybytes);
sys/crypto/cast.h
19
void cast_encrypt(cast_key * key, u_int8_t * inblock, u_int8_t * outblock);
sys/crypto/cast.h
20
void cast_decrypt(cast_key * key, u_int8_t * inblock, u_int8_t * outblock);
sys/crypto/xform.c
147
sizeof(cast_key),
sys/crypto/xform.c
372
cast_encrypt((cast_key *) key, blk, blk);
sys/crypto/xform.c
378
cast_decrypt((cast_key *) key, blk, blk);
sys/crypto/xform.c
384
cast_setkey((cast_key *)sched, key, len);