Compute the SRP scrambling parameter u = H(PAD(A) || PAD(B)).
Declared in <openssl/srp.h>
[[deprecated]]
BIGNUM*
SRP_Calc_u_ex(
BIGNUM const* A,
BIGNUM const* B,
BIGNUM const* N,
OSSL_LIB_CTX* libctx,
char const* propq);
Deprecated. Use of this entity is allowed but discouraged.
Newly allocated u value, or NULL on error. Caller must free.
| 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. |