[#SSL_get0_dane_authority] = SSL_get0_dane_authority :mrdocs: Return the matching DANE‐TA / DANE‐EE authority depth and optional anchors. == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int SSL_get0_dane_authority( xref:SSL.adoc[SSL]* s, xref:X509.adoc[X509]** mcert, xref:EVP_PKEY.adoc[EVP_PKEY]** mspki); ---- == Return Value Depth of the matching authority (>=0), or a negative value if none. == Parameters [cols="1,4"] |=== | Name| Description | *s* | SSL connection that completed DANE verification. | *mcert* | If non‐NULL, receives the matching certificate when applicable (borrowed). | *mspki* | If non‐NULL, receives the matching public key when applicable (borrowed). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#