Verify And Read A Signed Cookie Value
Let's say a value was added as a signed cookie in a request:
Generally to verify and read that value, you'd grab it from the signed cookies included in the request.
What if you have the signed cookie value, but not in the context of a cookies
object?
You can build a cookie jar from the current request and read the verified value from that.
It is also possible to Base64 decode the value, however that doesn't ensure that the value hasn't been tampered with.
Last updated