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
+13.6k Golang : convert(cast) string to float value
+12.3k Golang : HTTP response JSON encoded data
+14.3k Golang : Execute function at intervals or after some delay
+4.9k Golang : Customize scanner.Scanner to treat dash as part of identifier
+6.8k Golang : Get Alexa ranking data example
+16.5k Golang : read gzipped http response
+15k Golang : Get query string value on a POST request
+9.8k Golang : Use regular expression to get all upper case or lower case characters example
+16.7k Golang : Get number of CPU cores
+34.7k Golang : Upload and download file to/from AWS S3
+35.7k Golang : Converting a negative number to positive number
+6.6k Golang : Normalize email to prevent multiple signups example