Skip to content

Commit

Permalink
ensure newline at end of files
Browse files Browse the repository at this point in the history
  • Loading branch information
bhess committed Mar 7, 2024
1 parent 640ec29 commit 70659b2
Show file tree
Hide file tree
Showing 15 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/AVX2/arithmetic_128.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ static
vec_copy_128(bins + 8, out);
}

#endif
#endif
2 changes: 1 addition & 1 deletion src/AVX2/arithmetic_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ inline void multiply_bins_64(uint64_t *bins, uint64_t *out) {
vec_copy_64(bins + 4, out);
}

#endif
#endif
2 changes: 1 addition & 1 deletion src/AVX2/arithmetic_96.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ inline void multiply_bins_96(uint64_t *bins, uint64_t *out) {
vec_copy_96(bins + 6, out);
}

#endif
#endif
2 changes: 1 addition & 1 deletion src/AVX2/arithmetic_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ static inline uint64_t gf16v_mul_u64( uint64_t a, uint8_t b ) {
return r64;
}

#endif
#endif
1 change: 0 additions & 1 deletion src/AVX2/shuffle_arithmetic_128.h
Original file line number Diff line number Diff line change
Expand Up @@ -521,4 +521,3 @@ inline void mayo_5_S2t_times_PS2_avx2(const uint64_t *_PS2, __m256i *S2_multabs,

#undef K_OVER_2
#endif

1 change: 0 additions & 1 deletion src/AVX2/shuffle_arithmetic_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -478,4 +478,3 @@ void mayo12_m_upper(int m_legs, const uint64_t *in, uint64_t *out, int size) {

#undef K_OVER_2
#endif

2 changes: 1 addition & 1 deletion src/AVX2/shuffle_arithmetic_96.h
Original file line number Diff line number Diff line change
Expand Up @@ -546,4 +546,4 @@ inline void mayo_3_S2t_times_PS2_avx2(const uint64_t *PS2, __m256i *S2_multabs,
}

#undef K_OVER_2
#endif
#endif
2 changes: 1 addition & 1 deletion src/arithmetic.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,4 +323,4 @@ int sample_solution(const mayo_params_t *p, unsigned char *A,
}
}
return 1;
}
}
2 changes: 1 addition & 1 deletion src/common/aes128ctr.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,4 @@ int AES_128_CTR_4R_NI(unsigned char *output, size_t outputByteLen,
oqs_aes128r4_free_schedule_ni(schedule);
return (int)outputByteLen;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/common/debug_bench_tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ static inline void print_avx2_(__m256i a){

#endif

#endif
#endif
2 changes: 1 addition & 1 deletion src/mayo_1/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ crypto_sign_open(unsigned char *m, size_t *mlen,
*mlen = mlen_ll;
return rc;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/mayo_2/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ crypto_sign_open(unsigned char *m, size_t *mlen,
*mlen = mlen_ll;
return rc;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/mayo_3/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ crypto_sign_open(unsigned char *m, size_t *mlen,
*mlen = mlen_ll;
return rc;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/mayo_5/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ crypto_sign_open(unsigned char *m, size_t *mlen,
*mlen = mlen_ll;
return rc;
}
#endif
#endif
2 changes: 1 addition & 1 deletion src/params.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ MAYO_GEN_PARAMS(MAYO_1);
MAYO_GEN_PARAMS(MAYO_2);
MAYO_GEN_PARAMS(MAYO_3);
MAYO_GEN_PARAMS(MAYO_5);
#endif
#endif

0 comments on commit 70659b2

Please sign in to comment.