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
+19k Golang : Padding data for encryption and un-padding data for decryption
+14k Golang : Human readable time elapsed format such as 5 days ago
+8.9k Android Studio : Image button and button example
+24.1k Golang : Find biggest/largest number in array
+5.6k PHP : Convert string to timestamp or datestamp before storing to database(MariaDB/MySQL)
+21.3k Golang : How to get time zone and load different time zone?
+17k Golang : How to save log messages to file?
+51.4k Golang : Check if item is in slice/array
+11.5k Use systeminfo to find out installed Windows Hotfix(s) or updates
+55.4k Golang : Unmarshal JSON from http response
+36.7k Golang : Display float in 2 decimal points and rounding up or down