[#SSL_get_finished] = SSL_get_finished :mrdocs: Copy up to `count` bytes of the local Finished message into `buf.` == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- size_t SSL_get_finished( xref:SSL.adoc[SSL] const* s, void* buf, size_t count); ---- == Return Value Actual Finished length in bytes (may exceed `count).` == Parameters [cols="1,4"] |=== | Name| Description | *s* | SSL connection whose handshake Finished is queried. | *buf* | Destination buffer, or NULL to only query the Finished length. | *count* | Maximum number of bytes to copy into `buf.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#