mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
13 lines
383 B
C
13 lines
383 B
C
|
#ifndef VERIFY_H
|
||
|
#define VERIFY_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
/* returns 0 for equal strings, 1 for non-equal strings */
|
||
|
unsigned char PQCLEAN_NTRUHRSS701_CLEAN_verify(const unsigned char *a, const unsigned char *b, size_t len);
|
||
|
|
||
|
/* b = 1 means mov, b = 0 means don't mov*/
|
||
|
void PQCLEAN_NTRUHRSS701_CLEAN_cmov(unsigned char *r, const unsigned char *x, size_t len, unsigned char b);
|
||
|
|
||
|
#endif
|