CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Readme.md24 linesDownload Raw Back to cookie-signature
1 2# cookie-signature3 4  Sign and unsign cookies.5 6## Example7 8```js9var cookie = require('cookie-signature');10 11var val = cookie.sign('hello', 'tobiiscool');12val.should.equal('hello.DGDUkGlIkCzPz+C0B064FNgHdEjox7ch8tOBGslZ5QI');13 14var val = cookie.sign('hello', 'tobiiscool');15cookie.unsign(val, 'tobiiscool').should.equal('hello');16cookie.unsign(val, 'luna').should.be.false;17```18 19## License20 21MIT.22 23See LICENSE file for details.24