aboutsummaryrefslogtreecommitdiff
path: root/lib/websocket/funcs.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/websocket/funcs.go')
-rw-r--r--lib/websocket/funcs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/websocket/funcs.go b/lib/websocket/funcs.go
index f2016eb8..80d6cc18 100644
--- a/lib/websocket/funcs.go
+++ b/lib/websocket/funcs.go
@@ -5,7 +5,7 @@
package websocket
import (
- "crypto/sha1" //nolint:gosec
+ "crypto/sha1"
"encoding/base64"
"encoding/binary"
"log"
@@ -87,7 +87,7 @@ func Send(fd int, packet []byte) (err error) {
//
func generateHandshakeAccept(key []byte) string {
key = append(key, "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"...)
- sum := sha1.Sum(key) //nolint:gosec
+ sum := sha1.Sum(key)
return base64.StdEncoding.EncodeToString(sum[:])
}