Jelajahi Sumber

pcrypto: update

fatedier 9 tahun lalu
induk
melakukan
a729a4fafe
1 mengubah file dengan 4 tambahan dan 4 penghapusan
  1. 4 4
      src/frp/utils/pcrypto/pcrypto.go

+ 4 - 4
src/frp/utils/pcrypto/pcrypto.go

@@ -49,7 +49,6 @@ func (pc *Pcrypto) Encrypt(src []byte) ([]byte, error) {
 	defer zwr.Close()
 	zwr.Write(src)
 	zwr.Flush()
-	fmt.Println("com,src,en", len(src), len(zbuf.Bytes()))
 
 	// aes
 	src = pKCS7Padding(zbuf.Bytes(), aes.BlockSize)
@@ -57,8 +56,6 @@ func (pc *Pcrypto) Encrypt(src []byte) ([]byte, error) {
 	crypted := make([]byte, len(src))
 	blockMode.CryptBlocks(crypted, src)
 
-	fmt.Println("aes,src,en", len(src), len(crypted))
-
 	// base64
 	return []byte(base64.StdEncoding.EncodeToString(crypted)), nil
 }
@@ -87,7 +84,10 @@ func (pc *Pcrypto) Decrypt(str []byte) ([]byte, error) {
 
 	// gunzip
 	zbuf := bytes.NewBuffer(decryptText)
-	zrd, _ := gzip.NewReader(zbuf)
+	zrd, err := gzip.NewReader(zbuf)
+	if err != nil {
+		return nil, err
+	}
 	defer zrd.Close()
 	data, _ = ioutil.ReadAll(zrd)