Socket
Book a DemoInstallSign in
Socket

github.com/balthazar/adyen-encrypt

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/balthazar/adyen-encrypt

Source
Go
Version
v0.0.0-20201022162556-119412fe7b88
Version published
Created
Source

adyen-encrypt

[DEPRECATED] This module is deprecated since the original Adyen CSE project is deprecated and this encrytion method will not work with latest versions of Adyen SDK. Please use the official Adyen Web Components for Credit Card integration.

A rewrite of Adyen-CSE in ES2015 for the browser

npm i -S adyen-encrypt
Constructor

key The public key string you can find in the Adyen customer area

opts An object containing optionals as described below

import AdyenEncrypt from 'adyen-encrypt'

const instance = new AdyenEncrypt(key, {
  enableValidations: true,
  numberIgnoreNonNumeric: true,  
  cvcIgnoreBins: '101,404'
})
encrypt

data The object to encrypt

Returns the encrypted string

instance.encrypt({
  number: '5555 4444 3333 1111',
  cvc: '737',
  expiryMonth: '06',
  expiryYear: '2016',
  holderName: 'Balthazar Gronon'
})

FAQs

Package last updated on 22 Oct 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