Reviewed-by: Rich Salz <rsalz@openssl.org>
# Minimum warning options... any contributions to OpenSSL should at least get
# past these.
-my $gcc_devteam_warn = "-DPEDANTIC -DREF_DEBUG -DDEBUG_UNUSED -DBIO_DEBUG"
+my $gcc_devteam_warn = "-DPEDANTIC -DREF_DEBUG -DDEBUG_UNUSED -DBIO_DEBUG -DBLAKE_DEBUG"
. " -pedantic"
. " -Wall"
. " -Wno-long-long"
/* The param struct is carefully hand packed, and should be 64 bytes on
* every platform. */
- OPENSSL_assert(sizeof(BLAKE2B_PARAM) == 64);
+ assert(sizeof(BLAKE2B_PARAM) == 64);
/* IV XOR ParamBlock */
for (i = 0; i < 8; ++i) {
S->h[i] ^= load64(p + sizeof(S->h[i]) * i);
/* The param struct is carefully hand packed, and should be 32 bytes on
* every platform. */
- OPENSSL_assert(sizeof(BLAKE2S_PARAM) == 32);
+ assert(sizeof(BLAKE2S_PARAM) == 32);
blake2s_init0(S);
/* IV XOR ParamBlock */
for (i = 0; i < 8; ++i) {