Docker-NetworkingDataPersis.../api/node_modules/cookie-signature
adelyaou 4304009bbf Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
..
History.md Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
LICENSE Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
Readme.md Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
index.js Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
package.json Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00

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.