HomeSort by: relevance | last modified time | path
    Searched refs:cast128_key (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/crypto/cast128/
cast128.h 17 } cast128_key; typedef in typeref:struct:__anon80cd8cdc0108
19 void cast128_setkey(cast128_key *key, const u_int8_t *rawkey, int keybytes);
20 void cast128_encrypt(const cast128_key *key, const u_int8_t *inblock,
22 void cast128_decrypt(const cast128_key *key, const u_int8_t *inblock,
cast128.c 47 void cast128_encrypt(const cast128_key* key, const u_int8_t* inblock,
93 void cast128_decrypt(const cast128_key* key, const u_int8_t* inblock,
139 void cast128_setkey(cast128_key* key, const u_int8_t* rawkey, int keybytes)
  /src/sys/opencrypto/
cryptosoft_xform.c 528 cast128_encrypt((cast128_key *) key, blk, blk);
534 cast128_decrypt((cast128_key *) key, blk, blk);
541 *sched = malloc(sizeof(cast128_key), M_CRYPTO_DATA,
545 cast128_setkey((cast128_key *)*sched, key, len);
552 memset(*sched, 0, sizeof(cast128_key));

Completed in 12 milliseconds