Merge pull request #3804 from tmael/aws-sdk

Use Unix line endings
This commit is contained in:
David Garske
2021-02-23 18:33:07 -08:00
committed by GitHub
2 changed files with 47 additions and 47 deletions

View File

@ -246,7 +246,7 @@ WOLFSSL_API int wc_SrpSetPrivate(Srp* srp, const byte* priv, word32 size);
*
* The public ephemeral value is known as:
* A at the client side. A = g ^ a % N
* B at the server side. B = (k * v + (g ˆ b % N)) % N
* B at the server side. B = (k * v + (g ^ b % N)) % N
* This function MUST be called after wc_SrpSetPassword or wc_SrpSetVerifier.
*
* @param[in,out] srp the Srp structure.