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
+33.3k Golang : All update packages with go get command
+7.8k Golang : Multiplexer with net/http and map
+17.1k Golang : Get future or past hours, minutes or seconds
+5k Golang : Calculate half life decay example
+12k Golang : How to check if a string starts or ends with certain characters or words?
+32.4k Golang : Regular Expression for alphanumeric and underscore
+29.9k Golang : How to verify uploaded file is image or allowed file types
+16.1k Golang : Find out mime type from bytes in buffer
+8.9k Golang : Create and shuffle deck of cards example
+7.9k Golang : Add build version and other information in executables
+31.9k Golang : Convert []string to []byte examples
+6.3k Golang : Convert an executable file into []byte example