10 lines
130 B
Python
Executable File
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)))
|
|
|