mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
11 lines
276 B
C
11 lines
276 B
C
|
#ifndef VERIFY_H
|
||
|
#define VERIFY_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
unsigned char PQCLEAN_KYBER1024_CLEAN_verify(const unsigned char *a, const unsigned char *b, size_t len);
|
||
|
|
||
|
void PQCLEAN_KYBER1024_CLEAN_cmov(unsigned char *r, const unsigned char *x, size_t len, unsigned char b);
|
||
|
|
||
|
#endif
|