SRP_Calc_A

Compute the client public value A = g^a mod N.

Synopsis

Declared in <openssl/srp.h>

[[deprecated]]
BIGNUM*
SRP_Calc_A(
    BIGNUM const* a,
    BIGNUM const* N,
    BIGNUM const* g);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

Newly allocated A value, or NULL on error. Caller must free.

Parameters

NameDescription
aClient secret exponent.
NSafe prime modulus.
gGenerator.