Lines Matching refs:cra_aead
548 inst->alg.cra_aead.ivsize = 16; in crypto_ccm_alloc_common()
549 inst->alg.cra_aead.maxauthsize = 16; in crypto_ccm_alloc_common()
553 inst->alg.cra_aead.setkey = crypto_ccm_setkey; in crypto_ccm_alloc_common()
554 inst->alg.cra_aead.setauthsize = crypto_ccm_setauthsize; in crypto_ccm_alloc_common()
555 inst->alg.cra_aead.encrypt = crypto_ccm_encrypt; in crypto_ccm_alloc_common()
556 inst->alg.cra_aead.decrypt = crypto_ccm_decrypt; in crypto_ccm_alloc_common()
783 if (alg->cra_aead.ivsize != 16) in crypto_rfc4309_alloc()
805 inst->alg.cra_aead.ivsize = 8; in crypto_rfc4309_alloc()
806 inst->alg.cra_aead.maxauthsize = 16; in crypto_rfc4309_alloc()
813 inst->alg.cra_aead.setkey = crypto_rfc4309_setkey; in crypto_rfc4309_alloc()
814 inst->alg.cra_aead.setauthsize = crypto_rfc4309_setauthsize; in crypto_rfc4309_alloc()
815 inst->alg.cra_aead.encrypt = crypto_rfc4309_encrypt; in crypto_rfc4309_alloc()
816 inst->alg.cra_aead.decrypt = crypto_rfc4309_decrypt; in crypto_rfc4309_alloc()
818 inst->alg.cra_aead.geniv = "seqiv"; in crypto_rfc4309_alloc()