I would like an explanation on how the connect.sid cookies work in the Connect Node.js framework. I noticed that they are formated like,
s:hash.signature
I don't understand how the signature is used when the hash is more than capable of being used to access the session data from a memory store or redis store.
Also, I don't understand why the s:
is even in the cookie; what is it's purpose.
I'm hearing that the signature is used to "sign" the hash. What exactly is meant by "sign" or "signed"? I need an explanation on this process as well.
Thanks!