[#EVP_PKEY_public_check_quick] = EVP_PKEY_public_check_quick :mrdocs: Perform a fast (non‐exhaustive) public‐key validity check. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_PKEY_public_check_quick(xref:EVP_PKEY_CTX.adoc[EVP_PKEY_CTX]* ctx); ---- == Description Skips expensive checks that EVP_PKEY_public_check() may perform for some algorithms. == Return Value 1 if the key appears valid, 0 if invalid, or a negative value on error. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Context whose key is checked (from EVP_PKEY_CTX_new or similar). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#