Home
last modified time | relevance | path

Searched refs:crypto_box_SEALBYTES (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/libsodium/src/libsodium/crypto_box/
H A Dcrypto_box_seal.c53 if (clen < crypto_box_SEALBYTES) { in crypto_box_seal_open()
58 COMPILER_ASSERT(crypto_box_PUBLICKEYBYTES < crypto_box_SEALBYTES); in crypto_box_seal_open()
67 return crypto_box_SEALBYTES; in crypto_box_sealbytes()
/freebsd/sys/contrib/libsodium/test/default/
H A Dbox_seal.c18 c_len = crypto_box_SEALBYTES + m_len; in main()
41 assert(crypto_box_sealbytes() == crypto_box_SEALBYTES); in main()
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_box.h122 #define crypto_box_SEALBYTES (crypto_box_PUBLICKEYBYTES + crypto_box_MACBYTES) macro