0225304 479b0dd372 fit:first há 1 semana atrás
..
History.md 479b0dd372 fit:first há 1 semana atrás
LICENSE 479b0dd372 fit:first há 1 semana atrás
Readme.md 479b0dd372 fit:first há 1 semana atrás
index.js 479b0dd372 fit:first há 1 semana atrás
package.json 479b0dd372 fit:first há 1 semana atrás

Readme.md

cookie-signature

Sign and unsign cookies.

Example

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;

License

MIT.

See LICENSE file for details.