Create gen.py
This commit is contained in:
parent
d4d922322e
commit
b1cbeca20e
1 changed files with 16 additions and 0 deletions
16
gen.py
Normal file
16
gen.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
'''
|
||||
____ __ __
|
||||
/ __ \__ __/ /_/ /_ ____ ____
|
||||
/ /_/ / / / / __/ __ \/ __ \/ __ \
|
||||
/ ____/ /_/ / /_/ / / / /_/ / / / /
|
||||
/_/ \__, /\__/_/ /_/\____/_/ /_/
|
||||
/____/
|
||||
100 characters
|
||||
|
||||
Usage:
|
||||
python3 gen.py [KEY] [SITE]
|
||||
'''
|
||||
|
||||
import sys
|
||||
print(sys.argv[1],end='')
|
||||
for i in range(0,4):print(chr(ord(sys.argv[2][i])^37),end='')
|
Loading…
Reference in a new issue