
#130: Encrypting Ecto Fields with Cloak
Published February 22, 2021
8m 16s
We have a blank application here that we need to update to allow people to submit their name, age, and email address.
This is some personal information that we’re collecting and we don’t want to store this un-encrypted. Let’s add a layer of security and encrypt these fields in our database.
To get started we’ll…