1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

aesni_gcm_mult() now returns void

This commit is contained in:
Manuel Pégourié-Gonnard
2013-12-30 13:54:23 +01:00
parent bfa3c9a85f
commit d4588cfb6a
3 changed files with 7 additions and 9 deletions

View File

@ -198,7 +198,7 @@ static void gcm_mult( gcm_context *ctx, const unsigned char x[16],
PUT_UINT32_BE( ctx->HL[8] >> 32, h, 8 );
PUT_UINT32_BE( ctx->HL[8], h, 12 );
(void) aesni_gcm_mult( output, x, h );
aesni_gcm_mult( output, x, h );
return;
}
#endif