[#SRP_Calc_B] = SRP_Calc_B :mrdocs: Compute the server public value B = gˆb + k*v (mod N) for TLS‐SRP (default library context; deprecated). == Synopsis Declared in `<openssl/srp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:BIGNUM.adoc[BIGNUM]* SRP_Calc_B( xref:BIGNUM.adoc[BIGNUM] const* b, xref:BIGNUM.adoc[BIGNUM] const* N, xref:BIGNUM.adoc[BIGNUM] const* g, xref:BIGNUM.adoc[BIGNUM] const* v); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value Newly allocated B value, or NULL on error. Caller must free. == Parameters [cols="1,4"] |=== | Name| Description | *b* | Server secret exponent. | *N* | Safe prime modulus. | *g* | Generator. | *v* | User password verifier. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#