ossl: Provide a fallback definition of __uint128_t when needed

This is required on i386.  The patch has no functional change, since
AES-GCM isn't implemented for that platform.

Fixes:	9a3444d91c ("ossl: Add a VAES-based AES-GCM implementation for amd64")
Reported by:	Jenkins
This commit is contained in:
Mark Johnston 2023-06-02 18:18:05 -04:00
parent c8dbef44ff
commit 9d5a47e13c

View file

@ -49,6 +49,10 @@ struct ossl_aes_gcm_ops {
size_t len);
};
#ifndef __SIZEOF_INT128__
typedef struct { uint64_t v[2]; } __uint128_t;
#endif
struct ossl_gcm_context {
struct {
union {