mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
f4bd312180
* Integrate Kyber-AVX2 into PQClean * Fix types and formatting in Kyber * Workaround a valgrind crash * Remove comment in shuffle.s * Remove some extraneous truncations * fixup! Fix types and formatting in Kyber
12 lines
261 B
C
12 lines
261 B
C
#ifndef VERIFY_H
|
|
#define VERIFY_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t PQCLEAN_KYBER1024_CLEAN_verify(const uint8_t *a, const uint8_t *b, size_t len);
|
|
|
|
void PQCLEAN_KYBER1024_CLEAN_cmov(uint8_t *r, const uint8_t *x, size_t len, uint8_t b);
|
|
|
|
#endif
|