#include int crypto_verify(const unsigned char *x,const unsigned char *y) { if (memcmp(x,y,8)) return -1; return 0; }