Searched refs:crypto_box_seal_open (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/contrib/libsodium/test/default/ |
H A D | box_seal.c | 27 if (crypto_box_seal_open(m2, c, c_len, pk, sk) != 0) { in main() 33 printf("%d\n", crypto_box_seal_open(m, c, 0U, pk, sk)); in main() 34 printf("%d\n", crypto_box_seal_open(m, c, c_len - 1U, pk, sk)); in main() 35 printf("%d\n", crypto_box_seal_open(m, c, c_len, sk, pk)); in main()
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_box/ |
H A D | crypto_box_seal.c | 47 crypto_box_seal_open(unsigned char *m, const unsigned char *c, in crypto_box_seal_open() function
|
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/ |
H A D | crypto_box.h | 131 int crypto_box_seal_open(unsigned char *m, const unsigned char *c,
|
/freebsd/sys/contrib/libsodium/ |
H A D | ChangeLog | 298 - crypto_box_seal() and crypto_box_seal_open() have been added.
|