[#SRP_Calc_u_ex] = SRP_Calc_u_ex :mrdocs: Compute the SRP scrambling parameter u = H(PAD(A) || PAD(B)). == Synopsis Declared in `<openssl/srp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:BIGNUM.adoc[BIGNUM]* SRP_Calc_u_ex( xref:BIGNUM.adoc[BIGNUM] const* A, xref:BIGNUM.adoc[BIGNUM] const* B, xref:BIGNUM.adoc[BIGNUM] const* N, xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* libctx, char const* propq); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value Newly allocated u value, or NULL on error. Caller must free. == Parameters [cols="1,4"] |=== | Name| Description | *A* | Client public value. | *B* | Server public value. | *N* | Safe prime modulus used for padding width. | *libctx* | Library context for algorithm fetching, or NULL for default. | *propq* | Property query for algorithm fetching, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#