Files
rocky/bin/makepass
T
Bart Sjerps 7d7938fcc7 update
2026-06-09 16:20:53 +02:00

10 lines
130 B
Python
Executable File

#!/usr/bin/python3
import argparse
import crypt
passwd='yahooo'
print(crypt.crypt(passwd, crypt.mksalt(crypt.METHOD_SHA512)))