Searched refs:ESP_GCM_IVLEN (Results 1 – 1 of 1) sorted by relevance
87 #define ESP_GCM_IVLEN 8 macro702 if (ivlen != (implicit_iv ? 0 : ESP_GCM_IVLEN)) { in esp_gcm_schedule()795 unsigned char nonce[ESP_GCM_SALT_LEN + ESP_GCM_IVLEN]; in esp_gcm_encrypt_aes()803 if (ivlen != (implicit_iv ? 0 : ESP_GCM_IVLEN)) { in esp_gcm_encrypt_aes()879 if (aes_encrypt_aad_gcm(nonce + ESP_GCM_SALT_LEN, ESP_GCM_IVLEN, ctx->encrypt)) { in esp_gcm_encrypt_aes()954 unsigned char nonce[ESP_GCM_SALT_LEN + ESP_GCM_IVLEN]; in esp_gcm_decrypt_aes()962 if (ivlen != (implicit_iv ? 0 : ESP_GCM_IVLEN)) { in esp_gcm_decrypt_aes()989 u_int8_t iv[ESP_GCM_IVLEN] __attribute__((aligned(4))); in esp_gcm_decrypt_aes()1019 if (aes_decrypt_aad_gcm(nonce + ESP_GCM_SALT_LEN, ESP_GCM_IVLEN, ctx->decrypt)) { in esp_gcm_decrypt_aes()1084 unsigned char nonce[ESP_GCM_SALT_LEN + ESP_GCM_IVLEN] = {}; in esp_aes_gcm_encrypt_data()[all …]