70543bba37
Exported from SUPERCOP-20200826 using the scripts at: https://github.com/jschanck/pqclean-package-ntruprime
14 lines
360 B
C
14 lines
360 B
C
#include "crypto_verify_1167.h"
|
|
|
|
|
|
int PQCLEAN_NTRULPR761_CLEAN_crypto_verify_1167(const unsigned char *x, const unsigned char *y) {
|
|
unsigned int differentbits = 0;
|
|
int i;
|
|
|
|
for (i = 0; i < PQCLEAN_NTRULPR761_CLEAN_crypto_verify_1167_BYTES; ++i) {
|
|
differentbits |= x[i] ^ y[i];
|
|
}
|
|
|
|
return (int) (1 & ((differentbits - 1) >> 8)) - 1;
|
|
}
|