Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lib_base
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sikang
lib_base
Commits
d49fc98b
Commit
d49fc98b
authored
Oct 29, 2019
by
sikang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix
parent
2a651cf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
python/tools/garble/java_garble.py
+6
-6
No files found.
python/tools/garble/java_garble.py
View file @
d49fc98b
...
...
@@ -89,16 +89,15 @@ class JavaGarble:
for
i
in
range
(
0
,
random
.
randint
(
0
,
5
)):
log_code
+=
"Log.
%
s(
\"
%
s
\"
,
\"
%
s
\"
);
\n
"
%
(
''
.
join
(
random
.
sample
(
"idew"
,
random
.
randint
(
1
,
1
))),
self
.
__name
,
''
.
join
(
random
.
sample
(
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
,
random
.
randint
(
3
,
10
)))
,
''
.
join
(
random
.
sample
(
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
,
random
.
randint
(
5
,
15
)))
)
fun_content
=
fun_content
.
replace
(
"${func_content}"
,
log_code
+
return_value
)
fun_content
=
fun_content
.
replace
(
"${func_content}"
,
log_code
+
return_value
)
self
.
__functions
.
append
(
fun_content
)
if
len
(
self
.
__functions
)
<
random
.
randint
(
3
,
10
):
self
.
__generate_function
(
model_path
)
self
.
__generate_function
(
model_path
)
#插入代码
def
__garble_java_file
(
self
,
file
):
...
...
@@ -111,7 +110,8 @@ class JavaGarble:
#生成全局变量
self
.
__generate_variable
()
#生成方法
self
.
__generate_variable
()
self
.
__generate_function
(
"tools/garble/model/activity_model.java"
)
ignore
=
False
with
open
(
file
,
"w+"
,
encoding
=
"utf-8"
)
as
fout
:
for
line
in
lines
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment