[#SHA224] = SHA224 :mrdocs: Compute the SHA‐224 digest of `n` bytes at `d` in one shot. == Synopsis Declared in `<openssl/sha.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- unsigned char* SHA224( unsigned char const* d, size_t n, unsigned char* md); ---- == Return Value Pointer to the digest bytes, or NULL on error. == Parameters [cols="1,4"] |=== | Name| Description | *d* | Input message bytes. | *n* | Number of bytes at `d.` | *md* | Output buffer of at least SHA224_DIGEST_LENGTH bytes, or NULL for a static buffer. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#