Socket
Socket
Sign inDemoInstall

node-adyen-encrypt

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-adyen-encrypt

Adyen encryption for Node.js.


Version published
Maintainers
1
Created
Source

Classic Adyen Client-Side Encryption (CSE) on Node

A NodeJS helper to encrypt data with the Adyen CSE Version: 0_1_24

Prerequisites:

You will need a Adyen Key

Install

npm install node-adyen-encrypt

Usage

     const adyenEncrypt = require('node-adyen-encrypt');

     const adyenKey     =   "your key as retrieved from the Adyen Customer Area Web Service User page";
     const options = {};
     const cardData = {
         number : cardNumber,       // 'xxxx xxxx xxxx xxxx'
         cvc : cvc,                 //'xxx'
         holderName : holderName,   // 'John Doe'
         expiryMonth : expiryMonth, //'MM'
         expiryYear : expiryYear,   // 'YYYY'
         generationtime : generationtime // new Date().toISOString()
     };
     const cseInstance = adyenEncrypt.createEncryption(adyenKey, options);
     cseInstance.validate(cardData);
     const dataEncrypted = cseInstance.encrypt(cardData);

Author

👤 Danilo Pedrosa

  • Github: @dmop

Show your support

Give a ⭐️ if this project helped you!

Keywords

FAQs

Package last updated on 18 Apr 2020

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