Implementation of the ANSI AES DUKPT standard: specified within Retail Financial Services Symmetric Key Management Part 3: Using Symmetric Techniques (ANSI X9.24-3:2017).
-
Add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
-
Add the dependency:
dependencies { implementation 'com.github.joyner-perez:aes_dukpt_x9.24-3-2017:1.1.0' }
-
Add the JitPack repository to your build file:
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
-
Add the dependency:
<dependency> <groupId>com.github.joyner-perez</groupId> <artifactId>aes_dukpt_x9.24-3-2017</artifactId> <version>1.1.0</version> </dependency>
-