Searched refs:ESP_GCM_IVLEN (Results 1 – 1 of 1) sorted by relevance
87 #define ESP_GCM_IVLEN 8 macro690 if (ivlen != (implicit_iv ? 0 : ESP_GCM_IVLEN)) { in esp_gcm_schedule()779 unsigned char nonce[ESP_GCM_SALT_LEN + ESP_GCM_IVLEN]; in esp_gcm_encrypt_aes()787 if (ivlen != (implicit_iv ? 0 : ESP_GCM_IVLEN)) { in esp_gcm_encrypt_aes()863 if (aes_encrypt_aad_gcm(nonce + ESP_GCM_SALT_LEN, ESP_GCM_IVLEN, ctx->encrypt)) { in esp_gcm_encrypt_aes()938 unsigned char nonce[ESP_GCM_SALT_LEN + ESP_GCM_IVLEN]; in esp_gcm_decrypt_aes()946 if (ivlen != (implicit_iv ? 0 : ESP_GCM_IVLEN)) { in esp_gcm_decrypt_aes()973 u_int8_t iv[ESP_GCM_IVLEN] __attribute__((aligned(4))); in esp_gcm_decrypt_aes()1003 if (aes_decrypt_aad_gcm(nonce + ESP_GCM_SALT_LEN, ESP_GCM_IVLEN, ctx->decrypt)) { in esp_gcm_decrypt_aes()1066 unsigned char nonce[ESP_GCM_SALT_LEN + ESP_GCM_IVLEN] = {}; in esp_aes_gcm_encrypt_data()[all …]