소스 검색

fix decrypt-aes

Denmaseno 8 년 전
부모
커밋
c3d5b48a71
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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))