Lines Matching refs:base
267 req->base.complete, req->base.data); in crypto_authenc_decrypt_tail()
407 auth_base = &auth->base; in crypto_authenc_create()
439 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, in crypto_authenc_create()
441 enc->base.cra_name) >= in crypto_authenc_create()
445 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME, in crypto_authenc_create()
447 enc->base.cra_driver_name) >= CRYPTO_MAX_ALG_NAME) in crypto_authenc_create()
450 inst->alg.base.cra_flags = (auth_base->cra_flags | in crypto_authenc_create()
451 enc->base.cra_flags) & CRYPTO_ALG_ASYNC; in crypto_authenc_create()
452 inst->alg.base.cra_priority = enc->base.cra_priority * 10 + in crypto_authenc_create()
454 inst->alg.base.cra_blocksize = enc->base.cra_blocksize; in crypto_authenc_create()
455 inst->alg.base.cra_alignmask = auth_base->cra_alignmask | in crypto_authenc_create()
456 enc->base.cra_alignmask; in crypto_authenc_create()
457 inst->alg.base.cra_ctxsize = sizeof(struct crypto_authenc_ctx); in crypto_authenc_create()