What are “signed” cookies in connect/expressjs?

前端 未结 4 1627
自闭症患者
自闭症患者 2020-11-29 16:01

I am trying to figure out what \"signed cookies\" actually are. There isn\'t much on the net, and if I try this:

app.use(express.cookieParser(\'A secret\'));         


        
4条回答
  •  感动是毒
    2020-11-29 17:04

    The cookie will still be visible, but it has a signature, so it can detect if the client modified the cookie.

    It works by creating a HMAC of the value (current cookie), and base64 encoded it. When the cookie gets read, it recalculates the signature and makes sure that it matches the signature attached to it.

    If it does not match, then it will give an error.

    If you want to hide the contents of the cookie as well, you should encrypt it instead (or just stores it in the server side session). I'm not sure if there is middleware for that already out there or not.

    Edit

    And to create a signed cookie you would use

    res.cookie('name', 'value', {signed: true})
    

    And to access a signed cookie use the signedCookies object of req:

    req.signedCookies['name']
    

提交回复
热议问题