[#CRYPTO_ccm128_decrypt_ccm64] = CRYPTO_ccm128_decrypt_ccm64 :mrdocs: Decrypt ciphertext in CCM using a ccm128_f acceleration callback. == Synopsis Declared in `<openssl/modes.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int CRYPTO_ccm128_decrypt_ccm64( xref:CCM128_CONTEXT-0c.adoc[CCM128_CONTEXT]* ctx, unsigned char const* inp, unsigned char* out, size_t len, xref:ccm128_f.adoc[ccm128_f] stream); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | CCM context ready for decryption. | *inp* | Ciphertext bytes of length `len.` | *out* | Plaintext buffer of length `len.` | *len* | Number of bytes to decrypt. | *stream* | Streaming CCM block function for the underlying cipher. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#