Skip to content

Commit

Permalink
Merge pull request #673 from cmorty/ltc_lrw_mode-macro
Browse files Browse the repository at this point in the history
Add missing LTC_ prefix to LTC_LRW_MODE macro
  • Loading branch information
sjaeckel authored Nov 5, 2024
2 parents cbb01b3 + 8daa79f commit d34f213
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/encauth/gcm/gcm_gf_mult.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const unsigned char gcm_shift_table[256*2] = {
#endif


#if defined(LTC_GCM_MODE) || defined(LRW_MODE)
#if defined(LTC_GCM_MODE) || defined(LTC_LRW_MODE)

#ifndef LTC_FAST
/* right shift */
Expand Down
2 changes: 1 addition & 1 deletion src/headers/tomcrypt_mac.h
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ int ccm_test(void);

#endif /* LTC_CCM_MODE */

#if defined(LRW_MODE) || defined(LTC_GCM_MODE)
#if defined(LTC_LRW_MODE) || defined(LTC_GCM_MODE)
void gcm_gf_mult(const unsigned char *a, const unsigned char *b, unsigned char *c);
#endif

Expand Down

0 comments on commit d34f213

Please sign in to comment.