Tagged Questions
3
votes
3answers
612 views
Choosing a session ID algorithm for a client-server relationship
I am developing an application which has a client-server relationship, and I am having trouble deciding on the algorithm by which the session identifier is determined. My goal is to restrict ...
0
votes
2answers
892 views
Is it safe to store password in PHP session?
I need to do some encryptions in the Private zone of my website and I want to use bcrypt with user's password.
Is it safe to store the password in the session when user does the login, so that I can ...