From dff34fa7fcea5696a1722e909f4b3b49d5ef0d0d Mon Sep 17 00:00:00 2001 From: Zack Date: Fri, 24 May 2024 19:44:28 -0700 Subject: [PATCH] fix comment --- src/croc/croc.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/croc/croc.go b/src/croc/croc.go index 3e2fc08d..9410339a 100644 --- a/src/croc/croc.go +++ b/src/croc/croc.go @@ -196,8 +196,6 @@ func New(ops Options) (c *Client, err error) { return } // Create a hash of part of the shared secret to use as the room name - // add the current day and "croc" to the shared secret to make more resistant - // to rainbow tables hashExtra := "croc" roomNameBytes := sha256.Sum256([]byte(c.Options.SharedSecret[:4] + hashExtra)) c.Options.RoomName = hex.EncodeToString(roomNameBytes[:])