Removed stale import and log msg

This commit is contained in:
Russ Magee 2025-04-20 11:22:15 -07:00
parent 7731466c8c
commit 003230ef62
1 changed files with 0 additions and 2 deletions

View File

@ -22,7 +22,6 @@ import (
"blitter.com/go/cryptmt" "blitter.com/go/cryptmt"
"blitter.com/go/hopscotch" "blitter.com/go/hopscotch"
"blitter.com/go/xs/logger"
"github.com/aead/chacha20/chacha" "github.com/aead/chacha20/chacha"
whirlpool "github.com/jzelinskie/whirlpool" whirlpool "github.com/jzelinskie/whirlpool"
"golang.org/x/crypto/blowfish" "golang.org/x/crypto/blowfish"
@ -66,7 +65,6 @@ func getNewStreamAlgs(cb uint8, hb uint8) (config uint32) {
c := (cb % CAlgNoneDisallowed) c := (cb % CAlgNoneDisallowed)
h := (hb % HmacNoneDisallowed) h := (hb % HmacNoneDisallowed)
config = uint32(h)<<8 | uint32(c) config = uint32(h)<<8 | uint32(c)
//logger.LogDebug(fmt.Sprintf("[Chose new algs [%d:%d config:%d]", h, c, config))
return return
} }