Sign in
apache
/
toolchain
/
refs/heads/jdk7-unlimited-security
/
.
/
pyhelpers
/
crypt.py
blob: 784ee80e88cdfa3a2f6e3a3f9a7e6b0a8ec8cbd8 [
file
] [
log
] [
blame
]
from
passlib
.
hash
import
sha512_crypt
import
sys
hash
=
sha512_crypt
.
encrypt
(
sys
.
argv
[
1
])
print
(
hash
)