diff --git a/test/default/box_easy2.c b/test/default/box_easy2.c index 81e43387..05cb099f 100644 --- a/test/default/box_easy2.c +++ b/test/default/box_easy2.c @@ -113,6 +113,10 @@ main(void) ret = crypto_box_detached(c, mac, m, (unsigned long long) mlen, nonce, alicepk, bobsk); assert(ret == 0); + if (crypto_box_open_detached(m2, c, mac, (unsigned long long) mlen, nonce, + small_order_p, alicesk) != -1) { + printf("crypto_box_open_detached() with a weak key passed\n"); + } if (crypto_box_open_detached(m2, c, mac, (unsigned long long) mlen, nonce, bobpk, alicesk) != 0) { printf("crypto_box_open_detached() failed\n");