Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node_triple_des

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node_triple_des

Node Js encryption module for triple des

  • 1.3.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
941
decreased by-30.76%
Maintainers
1
Weekly downloads
 
Created
Source

Node - Triple Des

npm package

Run on Repl.it Node.js CI Node.js CI Node.js CI

Node - Triple Des Node Js encryption module for triple des Table of contents:

Quickstart

DES message digest cryptographic hash function algorithm from CryptoJS, packaged for Nodejs.

Dependency

Install

Inside your project folder run

$ npm install node_triple_des

Usage

const Encryption = require('node_triple_des');

const encrypt =  Encryption.encrypt('SharedKey', 'Plain Test');
console.log(encrypt);
// U2FsdGVkX1+luaxAzoyoyJI/5sAzyUW1

const decrypt =  Encryption.decrypt('SharedKey', 'CipherText');
console.log(decrypt);
// U2FsdGVkX1+luaxAzoyoyJI/5sAzyUW1
// Message

Versioning

This library follows Semantic Versioning.

This library is considered to be General Availability (GA). This means it is stable; the code surface will not change in backwards-incompatible ways unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. Issues and requests against GA libraries are addressed with the highest priority.

Contributing

Contributions welcome! See the Contributing Guide.

License

Apache Version 2.0

See LICENSE

Keywords

FAQs

Package last updated on 04 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc