2017 © Pedro Peláez
 

library dukpt-php

DUKPT implementation in PHP

image

camcima/dukpt-php

DUKPT implementation in PHP

  • Thursday, June 30, 2016
  • by camcima
  • Repository
  • 6 Watchers
  • 15 Stars
  • 4,065 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 15 Forks
  • 3 Open issues
  • 2 Versions
  • 4 % Grown

The README.md

camcima/dukpt-php

Scrutinizer Continuous Inspections Scrutinizer Quality Score Code Coverage, (*1)

A library to handle DUKPT decryption., (*2)

DUKPT Reference

DUKPT is defined in ANSI X9.24-1:2009 standard., (*3)

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., (*4)

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., (*5)

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., (*6)

Based on the BDK and the KSN, the algorithm calculates the IPEK, which is the base for calculating the future keys., (*7)

Note that for each BDK/KSN pair, different keys are generated for different uses:, (*8)

  • 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., (*9)

Installation

  • Include the library in your composer.json;
"require": {
...
"camcima/dukpt-php": "dev-master"
}
  • Run composer update;

Usage

To calculate the decryption key you must have the KSN and BDK., (*10)

<?php

use DUKPT\DerivedKey;
use DUKPT\KeySerialNumber;
use DUKPT\Utility;

$ksnObj = new KeySerialNumber($ksn);
$decryptionKey = DerivedKey::calculateDataEncryptionRequestKey($ksnObj, $bdk);

And to decrypt using 3DES:, (*11)

<?php

use DUKPT\DerivedKey;
use DUKPT\KeySerialNumber;
use DUKPT\Utility;

$decryptedData = Utility::hex2bin(
                    Utility::removePadding(
                        Utility::tripleDesDecrypt($encryptedHexData, $decryptionKey, true)
                    )
                  );

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., (*12)

If you want to see working examples, checkout the tests., (*13)

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..., (*14)

The Versions

30/06 2016

dev-master

9999999-dev https://github.com/camcima/dukpt-php

DUKPT implementation in PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

by Carlos Cima

php encryption cryptography transaction decryption dukpt des 3des tripledes

04/03 2013

1.0.0

1.0.0.0 https://github.com/camcima/dukpt-php

DUKPT implementation in PHP

  Sources   Download

MIT

The Requires

 

by Carlos Cima

php encryption cryptography transaction decryption dukpt des 3des tripledes