I used crypto:sha/1 to hash passwords in my erlang application.
Should I store the binary obtained directly in mnesia or should i convert them to hex string before?
|
I used crypto:sha/1 to hash passwords in my erlang application. Should I store the binary obtained directly in mnesia or should i convert them to hex string before? |
|||
|
|
|
Erlang has got a hash method: |
|||||
|
|
Using crypto:sha/1 for hashing passwords is dangerous. At least have a salt, but preferably, use say scrypt, bcrypt or pbkdf2 for storing passwords like this. They are resilient to a number of attacks. Unfortunately, I know of no Erlang-support for those :/ |
|||
|
|
|
Use https://github.com/smarkets/erlang-bcrypt to do the hashing rather than SHA1 or MD5. |
|||
|
|
|
Actually you store tuples (or records, which is the same) in mnesia, but in the fields of that records you can store any term (including binaries). It's not neccessary to convert them to strings. |
|||
|
|