box_seal test: don't check empty messages

Fixes #974
This commit is contained in:
Frank Denis
2020-07-01 23:34:34 +02:00
parent 290197ba3e
commit d8f512bfaa
+2 -2
View File
@@ -65,7 +65,7 @@ void tv2(void)
printf("crypto_box_seal_open() failure\n");
return;
}
assert(memcmp(cm, m2, m_len) != 0);
assert(m_len == 0 || memcmp(cm, m2, m_len) != 0);
sodium_free(cm);
sodium_free(m2);
}
@@ -135,7 +135,7 @@ void tv4(void)
printf("crypto_box_curve25519xchacha20poly1305_seal_open() failure\n");
return;
}
assert(memcmp(cm, m2, m_len) != 0);
assert(m_len == 0 || memcmp(cm, m2, m_len) != 0);
sodium_free(cm);
sodium_free(m2);
}