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