Guillermo Estrada
unread,Nov 22, 2013, 12:31:10 PM11/22/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golan...@googlegroups.com
Yes, the idea of form bases authentication and sessions is pretty straight forward. Security measures are taken in other áreas, like https, and storing passwords hashed and randomly salted, securing cookies with encryption, etc...
Most of this does not have to do with the App itself, and Gorilla sessions at least takes care of half of it in Go. You Just have to mind storing your password hashes with B-crypt or something, and use https whenever possible. I also store IP and time of last Access so I can log out users from time to time from inactivity and such, its more App logic than Go implementation really, no Library is going to do that for you.