I want to store sensitive user data in a database. This contains information like: account balance, e-mail for bank etc.
I am now storing the account balance as decimal
, the e-mail as text
and the first and lastname as varchar
.
I was wondering if I should hash or encrypt this information in order to make it more secure.
I searched, but couldn't find if it is needed. Does anyone know if I should hash or encrypt this information, or should I leave it as I have right now?