[#SSL_get_peer_finished] = SSL_get_peer_finished :mrdocs: Copy the peer's Finished handshake message hash into `buf.` == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- size_t SSL_get_peer_finished( xref:SSL.adoc[SSL] const* s, void* buf, size_t count); ---- == Return Value Number of Finished bytes available (may exceed `count` if truncated). == Parameters [cols="1,4"] |=== | Name| Description | *s* | SSL connection that has completed the Finished exchange. | *buf* | Destination buffer, or NULL to query the Finished length only. | *count* | Capacity of `buf` in bytes. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#