Compute the server public value B = g^b + k*v (mod N) for TLS-SRP (default library context; deprecated).
Declared in <openssl/srp.h>
[[deprecated]]
BIGNUM*
SRP_Calc_B(
BIGNUM const* b,
BIGNUM const* N,
BIGNUM const* g,
BIGNUM const* v);
Deprecated. Use of this entity is allowed but discouraged.
Newly allocated B value, or NULL on error. Caller must free.
| Name | Description |
|---|---|
| b | Server secret exponent. |
| N | Safe prime modulus. |
| g | Generator. |
| v | User password verifier. |