Compute the client public value A = g^a mod N.
Declared in <openssl/srp.h>
[[deprecated]]
BIGNUM*
SRP_Calc_A(
BIGNUM const* a,
BIGNUM const* N,
BIGNUM const* g);
Deprecated. Use of this entity is allowed but discouraged.
Newly allocated A value, or NULL on error. Caller must free.
| Name | Description |
|---|---|
| a | Client secret exponent. |
| N | Safe prime modulus. |
| g | Generator. |