Hash password

From wiki
Revision as of 18:15, 3 November 2022 by Mike (talk | contribs)
Jump to navigationJump to search

RHEL7

python -c 'import crypt,getpass; print crypt.crypt(getpass.getpass())'

RHEL8 python3 -c 'import crypt,getpass; print(crypt.crypt(getpass.getpass()))'