9 lines
94 B
Python
9 lines
94 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from passlib.hash import nthash
|
||
|
|
||
|
h = nthash.hash('admin');
|
||
|
|
||
|
print(h)
|
||
|
|