From 22982e503bf31ced681e7e5385c0b76531d06e3a Mon Sep 17 00:00:00 2001 From: Leo Antunes Date: Sat, 25 Dec 2021 12:03:22 +0100 Subject: [PATCH] [minor] Fix example code in REAME Just a minor drive-by fix to the example in the README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29effd8..eb74cd3 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ if err != nil { // both P and Q now have strong key generated from weak key kA, _ := A.SessionKey() -kB, _ := A.SessionKey() +kB, _ := B.SessionKey() fmt.Println(bytes.Equal(kA, kB)) // Output: true ```