1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 06:16:09 -04:00

kcp: removing annoying NewAEADAESGCMBasedOnSeed hint

This commit is contained in:
DuckSoft 2020-09-20 17:47:15 +08:00
parent df2d296ffc
commit 9def692b21
No known key found for this signature in database
GPG Key ID: 7A3A9FA6E4FD4A8D

View File

@ -4,8 +4,6 @@ package kcp
import (
"crypto/cipher"
"fmt"
"v2ray.com/core/common"
"v2ray.com/core/transport/internet"
)
@ -63,7 +61,6 @@ func (c *Config) GetReadBufferSize() uint32 {
// GetSecurity returns the security settings.
func (c *Config) GetSecurity() (cipher.AEAD, error) {
if c.Seed != nil {
fmt.Println("=========NewAEADAESGCMBasedOnSeed Used============")
return NewAEADAESGCMBasedOnSeed(c.Seed.Seed), nil
}
return NewSimpleAuthenticator(), nil