Sha256: 94cf69f324574654a971838ae750172af50ec33af7e0790ef2915935b5a4ee10
Contents?: true
Size: 294 Bytes
Versions: 5
Compression:
Stored size: 294 Bytes
Contents
#include <stddef.h> #include <stdint.h> #include "crypto_verify_16.h" int crypto_verify_16(const unsigned char *x, const unsigned char *y) { uint_fast16_t d = 0U; int i; for (i = 0; i < 16; i++) { d |= x[i] ^ y[i]; } return (1 & ((d - 1) >> 8)) - 1; }
Version data entries
5 entries across 5 versions & 1 rubygems