Compute the SRP server shared secret S = (A*v^u)^b mod N (deprecated).
Declared in <openssl/srp.h>
[[deprecated]]
BIGNUM*
SRP_Calc_server_key(
BIGNUM const* A,
BIGNUM const* v,
BIGNUM const* u,
BIGNUM const* b,
BIGNUM const* N);
Deprecated. Use of this entity is allowed but discouraged.
Newly allocated shared secret, or NULL on error. Caller must free.
| Name | Description |
|---|---|
| A | Client public value. |
| v | User password verifier. |
| u | Scrambling parameter from SRP_Calc_u(). |
| b | Server secret exponent. |
| N | Safe prime modulus. |