I would like to save data in cookies (user name, email address, etc...) but I don\'t the user to easily read it or modify it. I need to be able able to read the data back. H
I suggest you not only encrypt but also sign the data. If you don't sign the data, you won't be able to tell reliably whether the user modified the data. Also, to avoid replay you may want to add some timestamp/validity period information into the data.