Skip to content

Commit

Permalink
Update signatures.py
Browse files Browse the repository at this point in the history
  • Loading branch information
YeahNotSewerSide authored Jan 23, 2020
1 parent 568352f commit f329ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def get_cnonce() -> str:
buf = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
cnonce = ''
length = random.randint(0,19) + 30
for i in range(50):
for i in range(length):
cnonce += random.choice(buf)
else:
cnonce = 'o5oorrrlBlbWKHRVuH7lBQdVCQEVKeXeTkAyA9H6FY8DT904sq'
Expand Down

0 comments on commit f329ee0

Please sign in to comment.