Compute the SRP scrambling parameter u = H(A, B) using the default library context (deprecated).
Declared in <openssl/srp.h>
[[deprecated]]
BIGNUM*
SRP_Calc_u(
BIGNUM const* A,
BIGNUM const* B,
BIGNUM const* N);
Deprecated. Use of this entity is allowed but discouraged.
Newly allocated u value, or NULL on error; free with BN_free().
| Name | Description |
|---|---|
| A | Client public value. |
| B | Server public value. |
| N | Safe prime modulus (used when hashing A and B as padded fields). |