1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_kem/kyber768/clean/verify.h
2019-01-15 16:03:38 +01:00

11 lines
218 B
C

#ifndef VERIFY_H
#define VERIFY_H
#include <stdio.h>
int verify(const unsigned char *a, const unsigned char *b, size_t len);
void cmov(unsigned char *r, const unsigned char *x, size_t len, unsigned char b);
#endif