Denmaseno 8 éve
szülő
commit
c3d5b48a71
1 módosított fájl, 2 hozzáadás és 1 törlés
  1. 2 1
      crypt-aes.go

+ 2 - 1
crypt-aes.go

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