[#SRP_user_pwd_set0_sv] = SRP_user_pwd_set0_sv :mrdocs: Assign salt and verifier BIGNUMs to an SRP_user_pwd (ownership transfers on success). == Synopsis Declared in `<openssl/srp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int SRP_user_pwd_set0_sv( xref:SRP_user_pwd.adoc[SRP_user_pwd]* user_pwd, xref:BIGNUM.adoc[BIGNUM]* s, xref:BIGNUM.adoc[BIGNUM]* v); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success, 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *user_pwd* | Entry to update. | *s* | Salt value, or NULL to clear. | *v* | Verifier value, or NULL to clear. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#