Home
last modified time | relevance | path

Searched refs:aes_gmac_params (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/uts/common/crypto/io/
H A Ddprov.c4472 CK_AES_GMAC_PARAMS *aes_gmac_params; in copyin_aes_gmac_mech() local
4506 aes_gmac_params = kmem_alloc(total_param_len, KM_NOSLEEP); in copyin_aes_gmac_mech()
4507 if (aes_gmac_params == NULL) { in copyin_aes_gmac_mech()
4511 aes_gmac_params->ulAADLen = auth_data_len; in copyin_aes_gmac_mech()
4512 aes_gmac_params->pIv in copyin_aes_gmac_mech()
4513 = (uchar_t *)aes_gmac_params + sizeof (CK_AES_GMAC_PARAMS); in copyin_aes_gmac_mech()
4514 aes_gmac_params->pAAD = aes_gmac_params->pIv + AES_GMAC_IV_LEN; in copyin_aes_gmac_mech()
4517 aes_gmac_params->pIv, AES_GMAC_IV_LEN) != 0) { in copyin_aes_gmac_mech()
4518 kmem_free(aes_gmac_params, total_param_len); in copyin_aes_gmac_mech()
4524 aes_gmac_params->pAAD, auth_data_len) != 0) { in copyin_aes_gmac_mech()
[all …]