We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee97d5e commit 63dd054Copy full SHA for 63dd054
src/libsodium/crypto_box/crypto_box_seal.c
@@ -29,7 +29,7 @@ crypto_box_seal(unsigned char *c, const unsigned char *m,
29
int ret;
30
31
if (crypto_box_keypair(epk, esk) != 0) {
32
- return -1;
+ return -1; /* LCOV_EXCL_LINE */
33
}
34
memcpy(c, epk, crypto_box_PUBLICKEYBYTES);
35
_crypto_box_seal_nonce(nonce, epk, pk);
0 commit comments