Searched refs:out_nonce (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/ulib/crypto/include/crypto/
H A Daead.h61 zx_status_t Seal(const Bytes& ptext, uint64_t* out_nonce, Bytes* out_ctext) { argument
62 return Seal(ptext, nullptr, 0, out_nonce, out_ctext);
64 zx_status_t Seal(const Bytes& ptext, const Bytes& aad, uint64_t* out_nonce, Bytes* out_ctext) { argument
65 return Seal(ptext, aad.get(), aad.len(), out_nonce, out_ctext);
89 zx_status_t Seal(const Bytes& ptext, const uint8_t* aad, size_t aad_len, uint64_t* out_nonce,
/fuchsia/zircon/system/ulib/crypto/
H A Daead.cpp114 zx_status_t AEAD::Seal(const Bytes& ptext, const uint8_t* aad, size_t aad_len, uint64_t* out_nonce, argument
125 if (!out_nonce || !out_ctext) {
126 xprintf("bad parameter(s): out_nonce=%p, ctext=%p\n", out_nonce, out_ctext);
156 *out_nonce = nonce;

Completed in 30 milliseconds