Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.29 KB | None | 0 0
  1. |    92 | void PQCLEAN_KYBER512_CLEAN_ntt(int16_t poly[256]) {
  2. |       |                                 ~~~~~~~~^~~~~~~~~
  3. | In file included from /worktree/poky/build/tmp/work/core2-64-poky-linux/s2n/1.0.9-r0/git/pq-crypto/kyber_r2/ntt.c:1:
  4. | /worktree/poky/build/tmp/work/core2-64-poky-linux/s2n/1.0.9-r0/git/pq-crypto/kyber_r2/ntt.h:9:42: note: previously declared as 'int16_t *' {aka 'short int *'}
  5. |     9 | void PQCLEAN_KYBER512_CLEAN_ntt(int16_t *poly);
  6. |       |                                 ~~~~~~~~~^~~~
  7. | /worktree/poky/build/tmp/work/core2-64-poky-linux/s2n/1.0.9-r0/git/pq-crypto/kyber_r2/ntt.c:116:44: error: argument 1 of type 'int16_t[256]' {aka 'short int[256]'} with mismatched bound [-Werror=array-parameter=]
  8. |   116 | void PQCLEAN_KYBER512_CLEAN_invntt(int16_t poly[256]) {
  9. |       |                                    ~~~~~~~~^~~~~~~~~
  10. | In file included from /worktree/poky/build/tmp/work/core2-64-poky-linux/s2n/1.0.9-r0/git/pq-crypto/kyber_r2/ntt.c:1:
  11. | /worktree/poky/build/tmp/work/core2-64-poky-linux/s2n/1.0.9-r0/git/pq-crypto/kyber_r2/ntt.h:10:45: note: previously declared as 'int16_t *' {aka 'short int *'}
  12. |    10 | void PQCLEAN_KYBER512_CLEAN_invntt(int16_t *poly);
  13. |       |                                    ~~~~~~~~~^~~~
  14. | cc1: all warnings being treated as errors
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement