Browse Source

fix decrypt-aes

Denmaseno 8 năm trước cách đây
mục cha
commit
eb22e6ee42
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      crypt-aes.go

+ 1 - 0
crypt-aes.go

@@ -40,6 +40,7 @@ func EncryptAES(key, data []byte) []byte {
 // DecryptAES func
 func DecryptAES(key, ori []byte) []byte {
 	ciphertext := make([]byte, len(ori))
+	copy(ciphertext, ori)
 	block, err := aes.NewCipher(key)
 	if err != nil {
 		panic(fmt.Errorf("Error creating new block cipher\n%v\n", err))