1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber512/avx2/verify.h

12 lines
257 B
C
Raw Normal View History

#ifndef VERIFY_H
#define VERIFY_H
#include <stddef.h>
#include <stdint.h>
uint8_t PQCLEAN_KYBER512_AVX2_verify(const uint8_t *a, const uint8_t *b, size_t len);
void PQCLEAN_KYBER512_AVX2_cmov(uint8_t *r, const uint8_t *x, size_t len, uint8_t b);
#endif