func AESECBDecrypt(key, cipherText []byte) ([]byte, error) {
    logger.Println("AES-ECB: cipherText Length:", len(cipherText))
    if len(cipherText)%aes.BlockSize != 0 {
        return nil, fmt.Errorf("input not full blocks")
    }