[#CRYPTO_clear_free] = CRYPTO_clear_free :mrdocs: Securely clear `num` bytes at `ptr` and free the allocation. == Synopsis Declared in `<openssl/crypto.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void CRYPTO_clear_free( void* ptr, size_t num, char const* file, int line); ---- == Parameters [cols="1,4"] |=== | Name| Description | *ptr* | Memory to clear and free, or NULL. | *num* | Number of bytes at `ptr` to zero before freeing. | *file* | Source file name for tracking (usually *FILE*). | *line* | Source line for tracking (usually *LINE*). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#