Skip to content

Instantly share code, notes, and snippets.

View tokifukaz's full-sized avatar
🎸

Niyaz Abbasov tokifukaz

🎸
View GitHub Profile
@ozkansari
ozkansari / EncryptSample.java
Created March 27, 2019 15:21
PIN Block Creation
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
public class EncryptSample {
private static final String KEY = "AB1C11111111111AAAAAAADDDDD11111";
private static final int PIN_LENGTH = 6;
public static void main(String[] args) throws Exception {