microservices/auth-service/node_modules/cookie-signature
2025-04-16 10:49:46 -07:00
..
History.md Initial working google auth 2025-04-16 10:49:46 -07:00
index.js Initial working google auth 2025-04-16 10:49:46 -07:00
LICENSE Initial working google auth 2025-04-16 10:49:46 -07:00
package.json Initial working google auth 2025-04-16 10:49:46 -07:00
Readme.md Initial working google auth 2025-04-16 10:49:46 -07:00

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.