Files
rocky/bin/makepass
T

10 lines
130 B
Python
Raw Normal View History

2026-06-09 16:20:53 +02:00
#!/usr/bin/python3
import argparse
import crypt
passwd='yahooo'
print(crypt.crypt(passwd, crypt.mksalt(crypt.METHOD_SHA512)))