1
0
Fork 0
forked from swee/MeowNex
MeowNex/cc/sc-decode

7 lines
197 B
Text
Raw Normal View History

2024-09-10 21:59:30 -07:00
#!/usr/bin/python3
import sweecrypt
from sys import argv
2024-12-24 16:09:16 -08:00
if argv[3][:2] == "-s":
print(sweecrypt.decrypt(" ".join(argv[4:]), argv[3][3:]))
else:
print(sweecrypt.decrypt(" ".join(argv[3:])))