Browse Source

Test crypto_box_open_detached() with a weak PK

next
Frank Denis 7 years ago
parent
commit
982cde1a77
  1. 4
      test/default/box_easy2.c

4
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");

Loading…
Cancel
Save