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