Searched refs:aes_gmac_params (Results 1 – 1 of 1) sorted by relevance
4498 CK_AES_GMAC_PARAMS *aes_gmac_params; in copyin_aes_gmac_mech() local4532 aes_gmac_params = kmem_alloc(total_param_len, KM_NOSLEEP); in copyin_aes_gmac_mech()4533 if (aes_gmac_params == NULL) { in copyin_aes_gmac_mech()4537 aes_gmac_params->ulAADLen = auth_data_len; in copyin_aes_gmac_mech()4538 aes_gmac_params->pIv in copyin_aes_gmac_mech()4539 = (uchar_t *)aes_gmac_params + sizeof (CK_AES_GMAC_PARAMS); in copyin_aes_gmac_mech()4540 aes_gmac_params->pAAD = aes_gmac_params->pIv + AES_GMAC_IV_LEN; in copyin_aes_gmac_mech()4543 aes_gmac_params->pIv, AES_GMAC_IV_LEN) != 0) { in copyin_aes_gmac_mech()4544 kmem_free(aes_gmac_params, total_param_len); in copyin_aes_gmac_mech()4550 aes_gmac_params->pAAD, auth_data_len) != 0) { in copyin_aes_gmac_mech()[all …]