Pal's Web Log
Programming - Linux, Ubuntu, Python, Django, Postgres, HTML, Cloud, Data Science etc.
Labels
Django
Docker
Google Cloud
Linux
Postgres
Python
Thursday, July 3, 2014
Creating Encrypted password for Linux:
Method 1
:
openssl passwd -salt <2 letter code> <your
password>
Method 2
:
python -c ' import crypt; print crypt.crypt("your password", "2 letter code") '
Method 3
:
perl -e ' print crypt("your password", "2 letter code"), "\n" '
Newer Post
Older Post
Home