Home
last modified time | relevance | path

Searched refs:keysched_t (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/common/net/wanboot/crypt/
H A Ddes3.c44 } keysched_t; typedef
49 if ((*cookie = malloc(sizeof (keysched_t))) == NULL) { in des3_init()
64 keysched_t *ksch = (keysched_t *)cookie; in des3_encrypt()
74 keysched_t *ksch = (keysched_t *)cookie; in des3_decrypt()
91 keysched_t *ks = (keysched_t *)cookie; in des3_key()
H A Daes.c738 } keysched_t; typedef
743 if ((*cookie = malloc(sizeof (keysched_t))) == NULL) { in aes_init()
758 keysched_t *ksch = (keysched_t *)cookie; in aes_encrypt()
961 keysched_t *ksch = (keysched_t *)cookie; in aes_decrypt()
1193 keysched_t *ks = (keysched_t *)cookie; in aes_key()
/titanic_50/usr/src/common/crypto/blowfish/
H A Dblowfish_impl.c341 } keysched_t; typedef
377 keysched_t *ksch = (keysched_t *)cookie; in blowfish_encrypt_block()
472 keysched_t *ksch = (keysched_t *)cookie; in blowfish_decrypt_block()
619 keysched_t *newbie = keysched; in blowfish_init_keysched()
686 keysched_t *keysched; in blowfish_alloc_keysched()
689 keysched = (keysched_t *)kmem_alloc(sizeof (keysched_t), kmflag); in blowfish_alloc_keysched()
691 keysched = (keysched_t *)malloc(sizeof (keysched_t)); in blowfish_alloc_keysched()
694 *size = sizeof (keysched_t); in blowfish_alloc_keysched()
/titanic_50/usr/src/common/crypto/des/
H A Ddes_impl.c48 } keysched_t; typedef
565 keysched_t *ksch = (keysched_t *)cookie; in des_crunch_block()
857 encryption_ks = ((keysched_t *)ks)->ksch_encrypt; in des_init_keysched()
858 decryption_ks = ((keysched_t *)ks)->ksch_decrypt; in des_init_keysched()
950 size = sizeof (keysched_t); in des_alloc_keysched()
958 keysched = (keysched_t *)kmem_alloc(size, kmflag); in des_alloc_keysched()
960 keysched = (keysched_t *)malloc(size); in des_alloc_keysched()