Explorar o código

fix decrypt-aes

Denmaseno %!s(int64=8) %!d(string=hai) anos
pai
achega
c3d5b48a71
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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))