From 4218fe839d14726f9357f5e90eb4b72489adb04b Mon Sep 17 00:00:00 2001 From: Adam Fowler Date: Thu, 31 Oct 2024 11:34:44 +0000 Subject: [PATCH] Update proof of shared secret section in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 300777a..1b7df99 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,6 @@ The library is compliant with RFC5054 and should work with any server implementi - Python library [srptools](https://github.com/idlesign/srptools) - Typescript library [tssrp6a](https://github.com/midonet/tssrp6a) -## Proof of secret +## Proof of shared secret -For generating the proof above I use the method detailed in [RFC2945](https://tools.ietf.org/html/rfc2945#section-3) but not all servers use this method. For this reason I have kept the sharedSecret generation separate from the proof generation, so you can insert your own version. +For generating the client and server proofs of the shared secret I use the method detailed in [RFC2945](https://tools.ietf.org/html/rfc2945#section-3) with everything padded out to the size of N, but not all servers use this method. For this reason I have kept the sharedSecret generation separate from the proof generation, so you can insert your own version.