2019-06-18 14:40:24 +01:00
|
|
|
|
#ifndef VERIFY_H
|
|
|
|
|
#define VERIFY_H
|
|
|
|
|
|
2019-06-18 10:00:33 +01:00
|
|
|
|
/*-------------------------------------------------
|
|
|
|
|
This file has been adapted from the implementation
|
|
|
|
|
(available at https://github.com/pq-crystals/kyber) of
|
|
|
|
|
"CRYSTALS – Kyber: a CCA-secure module-lattice-based KEM"
|
|
|
|
|
by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
|
|
|
|
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
|
|
|
|
----------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
2019-06-18 11:07:48 +01:00
|
|
|
|
#include <stdint.h>
|
2019-06-18 10:00:33 +01:00
|
|
|
|
|
|
|
|
|
/* returns 0 for equal strings, 1 for non-equal strings */
|
2019-06-18 11:07:48 +01:00
|
|
|
|
unsigned char PQCLEAN_SABER_CLEAN_verify(const unsigned char *a, const unsigned char *b, size_t len);
|
2019-06-18 10:00:33 +01:00
|
|
|
|
|
|
|
|
|
/* b = 1 means mov, b = 0 means don't mov*/
|
|
|
|
|
void PQCLEAN_SABER_CLEAN_cmov(unsigned char *r, const unsigned char *x, size_t len, unsigned char b);
|
|
|
|
|
|
|
|
|
|
#endif
|