Browse Source

change temporary variable to lower camel case (#427)

Co-authored-by: Chinsyo <chinsyo@sina.cn>
Chinsyo 5 years ago
parent
commit
c4c750d03f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      transport/internet/kcp/cryptreal.go

+ 2 - 2
transport/internet/kcp/cryptreal.go

@@ -9,7 +9,7 @@ import (
 )
 )
 
 
 func NewAEADAESGCMBasedOnSeed(seed string) cipher.AEAD {
 func NewAEADAESGCMBasedOnSeed(seed string) cipher.AEAD {
-	HashedSeed := sha256.Sum256([]byte(seed))
-	aesBlock := common.Must2(aes.NewCipher(HashedSeed[:16])).(cipher.Block)
+	hashedSeed := sha256.Sum256([]byte(seed))
+	aesBlock := common.Must2(aes.NewCipher(hashedSeed[:16])).(cipher.Block)
 	return common.Must2(cipher.NewGCM(aesBlock)).(cipher.AEAD)
 	return common.Must2(cipher.NewGCM(aesBlock)).(cipher.AEAD)
 }
 }