node-encrypted
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

node-encrypted

Simple & easy way to encrypt (and decrypt) string on node.js.

We build this library to provide an easiest way as possible to encrypt and decrypt string, while also being incredibly secure.

Supported algorithm:

  • aes-128-gcm
  • aes-192-gcm
  • aes-256-gcm
  • more to be supported!

Installation

npm install --save node-encrypted

Usage

import { encrypt, decrypt } from  'node-encrypted';
// const { encrypt, decrypt } = require('node-encrypted'); // legacy way

const encryptedString = encrypt('aes-256-gcm', 'very secret text', 'secret');
// W9RFn97WvNuMbQw=*8r053fqPKXMHPx2O34UnyQ==*zJ7S1U95GRvRhTfo/CfhFA==*vQOEQZKf9mWEhdoyUnfWiA==

const decrypted = decrypt('aes-256-gcm', encryptedString, 'secret');
// very secret text

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i node-encrypted

    Weekly Downloads

    1

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    9.41 kB

    Total Files

    11

    Last publish

    Collaborators

    • harismawan