cookie-signature
Advanced tools
Weekly downloads
Readme
Sign and unsign cookies.
var cookie = require('cookie-signature');
var val = cookie.sign('hello', 'tobiiscool');
val.should.equal('hello.DGDUkGlIkCzPz+C0B064FNgHdEjox7ch8tOBGslZ5QI');
var val = cookie.sign('hello', 'tobiiscool');
cookie.unsign(val, 'tobiiscool').should.equal('hello');
cookie.unsign(val, 'luna').should.be.false;
MIT.
See LICENSE file for details.
FAQs
Sign and unsign cookies
The npm package cookie-signature receives a total of 21,637,969 weekly downloads. As such, cookie-signature popularity was classified as popular.
We found that cookie-signature demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.