Browse Source

Merge pull request #207 from DuckSoft/master

kcp: removing annoying NewAEADAESGCMBasedOnSeed hint
pull/2744/head
Kslr 4 years ago committed by GitHub
parent
commit
14c80ec2e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      transport/internet/kcp/config.go

3
transport/internet/kcp/config.go

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

Loading…
Cancel
Save