Skip to content

Commit

Permalink
Fix build for ppc64le (#1167)
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth authored Aug 25, 2023
1 parent b01b3d4 commit 6136d88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crypto/fipsmodule/modes/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,9 @@ size_t aesv8_gcm_8x_dec_256(const uint8_t *in, size_t bit_len, uint8_t *out,
#define GHASH_ASM_PPC64LE
#define GCM_FUNCREF
void gcm_init_p8(u128 Htable[16], const uint64_t Xi[2]);
void gcm_gmult_p8(uint64_t Xi[2], const u128 Htable[16]);
void gcm_ghash_p8(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
size_t len);
void gcm_gmult_p8(uint8_t Xi[16], const u128 Htable[16]);
void gcm_ghash_p8(uint8_t Xi[16], const u128 Htable[16],
const uint8_t *inp, size_t len);
#endif
#endif // OPENSSL_NO_ASM

Expand Down

0 comments on commit 6136d88

Please sign in to comment.