1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber1024/clean/verify.h
2021-03-24 21:02:49 +00:00

12 lines
324 B
C

#ifndef PQCLEAN_KYBER1024_CLEAN_VERIFY_H
#define PQCLEAN_KYBER1024_CLEAN_VERIFY_H
#include "params.h"
#include <stddef.h>
#include <stdint.h>
int 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