sched 153 crypto/des.h int des_enc_read(int fd,char *buf,int len,des_key_schedule sched,
sched 155 crypto/des.h int des_enc_write(int fd,char *buf,int len,des_key_schedule sched,
sched 300 crypto/xform.c des1_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 302 crypto/xform.c MALLOC(*sched, u_int8_t *, 128, M_CRYPTO_DATA, M_WAITOK);
sched 303 crypto/xform.c bzero(*sched, 128);
sched 305 crypto/xform.c if (des_set_key(key, *sched) < 0) {
sched 306 crypto/xform.c des1_zerokey(sched);
sched 314 crypto/xform.c des1_zerokey(u_int8_t **sched)
sched 316 crypto/xform.c bzero(*sched, 128);
sched 317 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 318 crypto/xform.c *sched = NULL;
sched 334 crypto/xform.c des3_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 336 crypto/xform.c MALLOC(*sched, u_int8_t *, 384, M_CRYPTO_DATA, M_WAITOK);
sched 337 crypto/xform.c bzero(*sched, 384);
sched 339 crypto/xform.c if (des_set_key(key, *sched) < 0 || des_set_key(key + 8, *sched + 128)
sched 340 crypto/xform.c < 0 || des_set_key(key + 16, *sched + 256) < 0) {
sched 341 crypto/xform.c des3_zerokey(sched);
sched 349 crypto/xform.c des3_zerokey(u_int8_t **sched)
sched 351 crypto/xform.c bzero(*sched, 384);
sched 352 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 353 crypto/xform.c *sched = NULL;
sched 369 crypto/xform.c blf_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 371 crypto/xform.c MALLOC(*sched, u_int8_t *, sizeof(blf_ctx), M_CRYPTO_DATA, M_WAITOK);
sched 372 crypto/xform.c bzero(*sched, sizeof(blf_ctx));
sched 373 crypto/xform.c blf_key((blf_ctx *)*sched, key, len);
sched 379 crypto/xform.c blf_zerokey(u_int8_t **sched)
sched 381 crypto/xform.c bzero(*sched, sizeof(blf_ctx));
sched 382 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 383 crypto/xform.c *sched = NULL;
sched 387 crypto/xform.c null_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 393 crypto/xform.c null_zerokey(u_int8_t **sched)
sched 420 crypto/xform.c cast5_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 422 crypto/xform.c MALLOC(*sched, u_int8_t *, sizeof(cast_key), M_CRYPTO_DATA, M_WAITOK);
sched 423 crypto/xform.c bzero(*sched, sizeof(cast_key));
sched 424 crypto/xform.c cast_setkey((cast_key *)*sched, key, len);
sched 430 crypto/xform.c cast5_zerokey(u_int8_t **sched)
sched 432 crypto/xform.c bzero(*sched, sizeof(cast_key));
sched 433 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 434 crypto/xform.c *sched = NULL;
sched 450 crypto/xform.c skipjack_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 452 crypto/xform.c MALLOC(*sched, u_int8_t *, 10 * sizeof(u_int8_t *), M_CRYPTO_DATA,
sched 454 crypto/xform.c bzero(*sched, 10 * sizeof(u_int8_t *));
sched 455 crypto/xform.c subkey_table_gen(key, (u_int8_t **) *sched);
sched 461 crypto/xform.c skipjack_zerokey(u_int8_t **sched)
sched 466 crypto/xform.c if (((u_int8_t **)(*sched))[k]) {
sched 467 crypto/xform.c bzero(((u_int8_t **)(*sched))[k], 0x100);
sched 468 crypto/xform.c FREE(((u_int8_t **)(*sched))[k], M_CRYPTO_DATA);
sched 471 crypto/xform.c bzero(*sched, 10 * sizeof(u_int8_t *));
sched 472 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 473 crypto/xform.c *sched = NULL;
sched 489 crypto/xform.c rijndael128_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 491 crypto/xform.c MALLOC(*sched, u_int8_t *, sizeof(rijndael_ctx), M_CRYPTO_DATA,
sched 493 crypto/xform.c bzero(*sched, sizeof(rijndael_ctx));
sched 495 crypto/xform.c if (rijndael_set_key((rijndael_ctx *)*sched, (u_char *)key, len * 8)
sched 497 crypto/xform.c rijndael128_zerokey(sched);
sched 505 crypto/xform.c rijndael128_zerokey(u_int8_t **sched)
sched 507 crypto/xform.c bzero(*sched, sizeof(rijndael_ctx));
sched 508 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 509 crypto/xform.c *sched = NULL;
sched 553 crypto/xform.c aes_ctr_setkey(u_int8_t **sched, u_int8_t *key, int len)
sched 560 crypto/xform.c MALLOC(*sched, u_int8_t *, sizeof(struct aes_ctr_ctx), M_CRYPTO_DATA,
sched 562 crypto/xform.c bzero(*sched, sizeof(struct aes_ctr_ctx));
sched 563 crypto/xform.c ctx = (struct aes_ctr_ctx *)*sched;
sched 567 crypto/xform.c aes_ctr_zerokey(sched);
sched 575 crypto/xform.c aes_ctr_zerokey(u_int8_t **sched)
sched 577 crypto/xform.c bzero(*sched, sizeof(struct aes_ctr_ctx));
sched 578 crypto/xform.c FREE(*sched, M_CRYPTO_DATA);
sched 579 crypto/xform.c *sched = NULL;
sched 1698 dev/ic/aic6360.c goto sched;
sched 1798 dev/ic/aic6360.c goto sched;
sched 1828 dev/ic/aic6360.c goto sched;
sched 1889 dev/ic/aic6360.c goto sched;
sched 1987 dev/ic/aic6360.c sched:
sched 2006 dev/ic/ncr53c9x.c goto sched;
sched 2155 dev/ic/ncr53c9x.c goto sched;
sched 2221 dev/ic/ncr53c9x.c goto sched;
sched 2691 dev/ic/ncr53c9x.c sched: