I have read about authentication in Lithium manual, still I have some questions about it.
After Auth::check ('default', $this->request)
, it will return an array of user data if succeed. I have finished this part according to the manual.
- if I want to save some of this array into session (not all of them), how to do it?
- Are those data in session encrypted? If not, how could I manipulate it, I want to encrypt it for security concern.
Thanks.