Create gen.py

This commit is contained in:
Anthony Wang 2020-06-08 14:24:30 -05:00 committed by GitHub
parent d4d922322e
commit b1cbeca20e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
gen.py Normal file
View 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='')