Compute the SRP server shared secret S = (A*vˆu)ˆb mod N (deprecated).

Synopsis

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);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

Newly allocated shared secret, or NULL on error. Caller must free.

Parameters

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.

Created with MrDocs