Generate salted password with OpenSSL example
Problem :
You need to generate a salted MD5 password string for new users registration. For example, you are IT administrator that responsible for creating new user account for new employees. Or you are a blog owner and you want to create a new account for additional authors to use your blog. Most of the time, you will need to store the salted MD5 password string and salt in separately fields in a table. How to generate salt and password?
Solutions :
Generate passwords with online tools. You can search for keywords such as
password generators
. However, most of these online tools do not provide the salt string separately from the password.Use
openssl
to generate salted password.
Executing
>openssl passwd -1 'new_password'
will produce :
$1$41vJBlpE$3J.9yvly.VCxelQpCaS3e.
Where 41vJBlpE
is the salt and 3J.9yvly.VCxelQpCaS3e.
is the password. The salt is always located in the second $...$ block.
Bear in mind that the password will be different each time openssl
generates new password. This is because of the random salt used to salt the password.
If you want to have consistent password generation, you can choose to use a fix salt for the password generation. Not recommended, but if you have valid reason to do so, you can use this command :
>openssl passwd -salt "*e#12bh1X" -1 'new_password'
and no matter how many times you generate the new passwords with the same salt and password, you will get the same MD5 salted password
$1$*e#12bh1$ECq2E2MqDIp2PUoqB1hld.
Reference :
See also : Golang : Generate MD5 checksum of a file
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+32.2k Golang : Regular Expression for alphanumeric and underscore
+21.2k Golang : Upload big file (larger than 100MB) to AWS S3 with multipart upload
+7.6k Swift : Convert (cast) String to Float
+7.6k Findstr command the Grep equivalent for Windows
+28.8k Golang : Save map/struct to JSON or XML file
+51.6k Golang : How to get struct field and value by name
+11.8k Golang : How to check if a string starts or ends with certain characters or words?
+9.8k Golang : How to get quoted string into another string?
+6.3k Golang : Skip or discard items of non-interest when iterating example
+5.4k Golang : Find change in a combination of coins example
+6.5k Mac/Linux/Windows : Get CPU information from command line