/src/PaswordEncryptionDecryption/BlowFishAlgorithm.java

https://bitbucket.org/shubhamjain2908/test · Java · 133 lines · 81 code · 12 blank · 40 comment · 0 complexity · 24de872c82164164cce6e662db326385 MD5 · raw file

  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package PaswordEncryptionDecryption;
  7. /**
  8. *
  9. * @author SHUBHAM
  10. */
  11. import java.security.SecureRandom;
  12. import javax.crypto.Cipher;
  13. import javax.crypto.KeyGenerator;
  14. import javax.crypto.SecretKey;
  15. import javax.crypto.spec.SecretKeySpec;
  16. import java.util.Random;
  17. public class BlowFishAlgorithm
  18. {
  19. byte[] skey = new byte[1000];
  20. String skeyString;
  21. static byte[] raw;
  22. String inputMessage, encryptedData, decryptedMessage;
  23. public BlowFishAlgorithm()
  24. {
  25. try
  26. {
  27. generateSymmetricKey();
  28. inputMessage = "Shubham Jain";
  29. byte[] ibyte = inputMessage.getBytes();
  30. byte[] ebyte = encrypt(raw, ibyte);
  31. String encryptedData = new String(ebyte);
  32. System.out.println("Encrypted message " + encryptedData);
  33. //JOptionPane.showMessageDialog(null, "Encrypted Data " + "\n" + encryptedData);
  34. byte[] dbyte = decrypt(raw, ebyte);
  35. String decryptedMessage = new String(dbyte);
  36. System.out.println("Decrypted message " + decryptedMessage);
  37. //JOptionPane.showMessageDialog(null, "Decrypted Data " + "\n" + decryptedMessage);
  38. }
  39. catch (Exception e)
  40. {
  41. System.out.println(e);
  42. }
  43. }
  44. void generateSymmetricKey()
  45. {
  46. try
  47. {
  48. Random r = new Random();
  49. int num = r.nextInt(10000);
  50. String knum = String.valueOf(num);
  51. byte[] knumb = knum.getBytes();
  52. skey = getRawKey(knumb);
  53. skeyString = new String(skey);
  54. System.out.println("Blowfish Symmetric key = " + skeyString);
  55. }
  56. catch (Exception e)
  57. {
  58. System.out.println(e);
  59. }
  60. }
  61. private static byte[] getRawKey(byte[] seed) throws Exception
  62. {
  63. KeyGenerator kgen = KeyGenerator.getInstance("Blowfish");
  64. SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
  65. sr.setSeed(seed);
  66. kgen.init(128, sr); // 128, 256 and 448 bits may not be available
  67. SecretKey skey = kgen.generateKey();
  68. raw = skey.getEncoded();
  69. return raw;
  70. }
  71. private static byte[] encrypt(byte[] raw, byte[] clear) throws Exception
  72. {System.out.println("Raw Encrypted: " + raw);
  73. SecretKeySpec skeySpec = new SecretKeySpec(raw, "Blowfish");
  74. Cipher cipher = Cipher.getInstance("Blowfish");
  75. cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
  76. byte[] encrypted = cipher.doFinal(clear);
  77. System.out.println("Encrypted Byte: "+encrypted);
  78. return encrypted;
  79. }
  80. private static byte[] decrypt(byte[] raw, byte[] encrypted) throws Exception
  81. {System.out.println("Raw Decrypted: " + raw);
  82. SecretKeySpec skeySpec = new SecretKeySpec(raw, "Blowfish");
  83. Cipher cipher = Cipher.getInstance("Blowfish");
  84. cipher.init(Cipher.DECRYPT_MODE, skeySpec);
  85. byte[] decrypted = cipher.doFinal(encrypted);
  86. return decrypted;
  87. }
  88. public static void main(String args[])
  89. {
  90. BlowFishAlgorithm bf = new BlowFishAlgorithm();
  91. }
  92. }
  93. //import javax.crypto.Cipher;
  94. //import javax.crypto.spec.SecretKeySpec;
  95. //import sun.misc.BASE64Decoder;
  96. //import sun.misc.BASE64Encoder;
  97. //public class BlowFishAlgorithm {
  98. //
  99. // public static void main(String[] args) throws Exception {
  100. // encrypt("edwin","password");
  101. // decrypt("6VsVtA/nhHKUZuWWmod/BQ==");
  102. // }
  103. //
  104. // private static void encrypt(String username, String password) throws Exception {
  105. // byte[] keyData = (username+password).getBytes();
  106. // SecretKeySpec secretKeySpec = new SecretKeySpec(keyData, "Blowfish");
  107. // Cipher cipher = Cipher.getInstance("Blowfish");
  108. // cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec);
  109. // byte[] hasil = cipher.doFinal(password.getBytes());
  110. // System.out.println(new BASE64Encoder().encode(hasil));
  111. // }
  112. //
  113. // private static void decrypt(String string) throws Exception {
  114. // byte[] keyData = ("edwin"+"password").getBytes();
  115. // SecretKeySpec secretKeySpec = new SecretKeySpec(keyData, "Blowfish");
  116. // Cipher cipher = Cipher.getInstance("Blowfish");
  117. // cipher.init(Cipher.DECRYPT_MODE, secretKeySpec);
  118. // byte[] hasil = cipher.doFinal(new BASE64Decoder().decodeBuffer(string));
  119. // System.out.println(new String(hasil));
  120. // }
  121. //}