[#SSL_CTX_set_srp_verify_param_callback] = SSL_CTX_set_srp_verify_param_callback :mrdocs: Set a client callback that verifies server SRP group parameters (deprecated). == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int SSL_CTX_set_srp_verify_param_callback( xref:SSL_CTX.adoc[SSL_CTX]* ctx, int(* cb)(xref:SSL.adoc[SSL]*, void*)); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success, or a non‐positive value on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Client SSL context that invokes `cb` when the server proposes SRP N and g. | *cb* | Callback receiving the SSL and the argument from SSL_CTX_set_srp_cb_arg; return a positive value to accept, or 0/negative to abort. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#