npm i --save nativescript-adyen-cse
- 版本: 1.0.3
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-adyen-cse
- 下载量
- 昨日: 10
- 上周: 24
- 上月: 41
NativeScript Adyen CSE 插件
Adyen NativeScript 客户端加密
安装
tns plugin add nativescript-adyen-cse
使用
import { AdyenCse, Card } from 'nativescript-adyen-cse';
this.adyenCse = new AdyenCse();
const data: Card = {
cvc: '737',
expiryMonth: '08',
expiryYear: '2018',
generationTime: new Date(),
holderName: 'holderName',
number: '4111111111111111'
};
let encryptedCardString = this.adyenCse.encrypt(data, 'your_adyen_public_Key');
许可证
MIT