JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 16
  • Score
    100M100P100Q52637F
  • License MIT

<p>This is a testing encryption code that encrypts and decrypt id that you store as cookie does not desplay user id and its not an md5 value but encryped</p>

Package Exports

  • encrypt-jwt-cookie

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (encrypt-jwt-cookie) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

encrypt-jwt-cookie

This is a testing encryption code that encrypts and decrypt id that you store as cookie does not display user id and its not an md5 value but encrypts ID

Note this is under development but encryption and decryption are now working correctly as expected only numbers can be encrypted encrypt any user id or number you want.

install

The source is available for download from GitHub. Alternatively, you can install using npm (Node Package Manager):

npm install encrypt-jwt-cookie

Or

npm i encrypt-jwt-cookie

Usage

var ejc = require("encrypt-jwt-cookie")
ejc.encrypt(2000)

Decrypt to get your user id

var ejc = require("encrypt-jwt-cookie")
 
ejc.decrypt('r7Mu5HmeozE0P9G165_hXf6z46000==');

just updated the encryption code and the decryption get random key for any of your user_id or any number.