skcipher_inst 461 crypto/essiv.c struct skcipher_instance *skcipher_inst = NULL; skcipher_inst 490 crypto/essiv.c skcipher_inst = kzalloc(sizeof(*skcipher_inst) + skcipher_inst 492 crypto/essiv.c if (!skcipher_inst) skcipher_inst 494 crypto/essiv.c inst = skcipher_crypto_instance(skcipher_inst); skcipher_inst 495 crypto/essiv.c base = &skcipher_inst->alg.base; skcipher_inst 590 crypto/essiv.c skcipher_inst->alg.setkey = essiv_skcipher_setkey; skcipher_inst 591 crypto/essiv.c skcipher_inst->alg.encrypt = essiv_skcipher_encrypt; skcipher_inst 592 crypto/essiv.c skcipher_inst->alg.decrypt = essiv_skcipher_decrypt; skcipher_inst 593 crypto/essiv.c skcipher_inst->alg.init = essiv_skcipher_init_tfm; skcipher_inst 594 crypto/essiv.c skcipher_inst->alg.exit = essiv_skcipher_exit_tfm; skcipher_inst 596 crypto/essiv.c skcipher_inst->alg.min_keysize = crypto_skcipher_alg_min_keysize(skcipher_alg); skcipher_inst 597 crypto/essiv.c skcipher_inst->alg.max_keysize = crypto_skcipher_alg_max_keysize(skcipher_alg); skcipher_inst 598 crypto/essiv.c skcipher_inst->alg.ivsize = ivsize; skcipher_inst 599 crypto/essiv.c skcipher_inst->alg.chunksize = crypto_skcipher_alg_chunksize(skcipher_alg); skcipher_inst 600 crypto/essiv.c skcipher_inst->alg.walksize = crypto_skcipher_alg_walksize(skcipher_alg); skcipher_inst 602 crypto/essiv.c skcipher_inst->free = essiv_skcipher_free_instance; skcipher_inst 604 crypto/essiv.c err = skcipher_register_instance(tmpl, skcipher_inst); skcipher_inst 636 crypto/essiv.c kfree(skcipher_inst);