kyber512r3_polyvec.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #include <stdint.h>
  3. #include "kyber512r3_params.h"
  4. #include "kyber512r3_poly.h"
  5. #define polyvec S2N_KYBER_512_R3_NAMESPACE(polyvec)
  6. typedef struct {
  7. poly vec[S2N_KYBER_512_R3_K];
  8. } polyvec;
  9. #define polyvec_compress S2N_KYBER_512_R3_NAMESPACE(polyvec_compress)
  10. void polyvec_compress(uint8_t r[S2N_KYBER_512_R3_POLYVECCOMPRESSEDBYTES], polyvec *a);
  11. #define polyvec_decompress S2N_KYBER_512_R3_NAMESPACE(polyvec_decompress)
  12. void polyvec_decompress(polyvec *r, const uint8_t a[S2N_KYBER_512_R3_POLYVECCOMPRESSEDBYTES]);
  13. #define polyvec_tobytes S2N_KYBER_512_R3_NAMESPACE(polyvec_tobytes)
  14. void polyvec_tobytes(uint8_t r[S2N_KYBER_512_R3_POLYVECBYTES], polyvec *a);
  15. #define polyvec_frombytes S2N_KYBER_512_R3_NAMESPACE(polyvec_frombytes)
  16. void polyvec_frombytes(polyvec *r, const uint8_t a[S2N_KYBER_512_R3_POLYVECBYTES]);
  17. #define polyvec_ntt S2N_KYBER_512_R3_NAMESPACE(polyvec_ntt)
  18. void polyvec_ntt(polyvec *r);
  19. #define polyvec_invntt_tomont S2N_KYBER_512_R3_NAMESPACE(polyvec_invntt_tomont)
  20. void polyvec_invntt_tomont(polyvec *r);
  21. #define polyvec_pointwise_acc_montgomery S2N_KYBER_512_R3_NAMESPACE(polyvec_pointwise_acc_montgomery)
  22. void polyvec_pointwise_acc_montgomery(poly *r, const polyvec *a, const polyvec *b);
  23. #define polyvec_reduce S2N_KYBER_512_R3_NAMESPACE(polyvec_reduce)
  24. void polyvec_reduce(polyvec *r);
  25. #define polyvec_csubq S2N_KYBER_512_R3_NAMESPACE(polyvec_csubq)
  26. void polyvec_csubq(polyvec *r);
  27. #define polyvec_add S2N_KYBER_512_R3_NAMESPACE(polyvec_add)
  28. void polyvec_add(polyvec *r, const polyvec *a, const polyvec *b);