I'd like to have sessions data encrypted like they are in suhosin, is there any library out there providing that?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

You could easily use mcrypt or a custom AES encryption to encrypt session data. The best bet would to create a session wrapper class that encrypts variables when you set them.

For key management, you could create a unique key and store it in a cookie, so that only the user can decrypt their own session data.

link|improve this answer
I think he is more looking in out of the box solution .... – RageZ Nov 8 '09 at 14:28
Actually, I have done that with functions, but you get me to go with session wrapper class ... thanks, it's exactly what I was looking for. – Paul Nov 9 '09 at 4:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.