Download the PHP package camcima/dukpt-php without Composer
On this page you can find all versions of the php package camcima/dukpt-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download camcima/dukpt-php
More information about camcima/dukpt-php
Files in camcima/dukpt-php
Package dukpt-php
Short Description DUKPT implementation in PHP
License MIT
Homepage https://github.com/camcima/dukpt-php
Informations about the package dukpt-php
camcima/dukpt-php
A library to handle DUKPT decryption.
DUKPT Reference
DUKPT is defined in ANSI X9.24-1:2009 standard.
Glossary
- 3DES - Triple DES (see DES);
- AES - Advanced Encryption Standard;
- BDK - Base Derivation Key;
- DES - Data Encryption Standard;
- DUKPT - Derived Unique Key Per Transaction;
- KSN - Key Serial Number;
- IPEK - Initial Pin Encryption Key;
- MAC - Message Authentication Code
Brief Explanation
DUKPT is a standard that deals with encryption key management for credit card readers. It was invented by Visa in the 80's.
Using DUPKT, the card reader encrypts each transaction with a unique key. This key is derived from a base derivation key (BDK) using a complicated algorithm implemented in this library.
The derived key is calculated from the BDK and the KSN, a serial number formed by the device identifier (unique) and a serial number starting at 1. This serial counter has 21 bits. This would allow more the 2 million uses, but the standard states that only binary numbers that have less than or equal to 10 "one" bits can be used, because the algorithm is very CPU intensive and each "one" bit requires additional calculations.
Based on the BDK and the KSN, the algorithm calculates the IPEK, which is the base for calculating the future keys.
Note that for each BDK/KSN pair, different keys are generated for different uses:
- PIN Encryption Key
- MAC Request Key
- MAC Response Key
- Data Request Key
- Data Response Key
The device I had used the Data Request Key
to encrypt the credit card data.
Installation
-
Include the library in your
composer.json
; - Run
composer update
;
Usage
To calculate the decryption key you must have the KSN and BDK.
And to decrypt using 3DES:
The last parameter of the tripleDesDecrypt
method changes the encryption mode to CBC3 (true), while the normal mode is ECB. I did this because we tested a chinese device that used this DES mode.
If you want to see working examples, checkout the tests.
Notes
Be aware that there are some DES/3DES/AES implementation differences between devices, as DES has many modes (ECB, CBC, CFB, OFB, ...). If it doesn't work, try another mode...