Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/timgabets/pinblock

ATM PIN Block service
https://github.com/timgabets/pinblock

Last synced: about 2 months ago
JSON representation

ATM PIN Block service

Awesome Lists containing this project

README

        

# pinblock

ATM PIN Block Service, used by [Electron ATM](https://github.com/timgabets/electron-atm). The module may be used for ATM PIN processing.

## To use:
```javascript
const PINBlockService = require('pinblock');

var pinblock = new PINBlockService();
pinblock.get('1234', '4000001234562000')
> '041234FEDCBA9DFF'

pinblock.encode_to_atm_format('0123456789ABCDEF')
> '0123456789:;<=>?'

```