/CryptoBlender/src/algoritms/BlowFish.java

https://gitlab.com/madamovic-bg/CryptoBlender · Java · 117 lines · 86 code · 22 blank · 9 comment · 8 complexity · 78b169b171c396a98628a9e6c352c5e6 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 algoritms;
  7. import interfaces.Blender;
  8. import java.io.File;
  9. import java.io.UnsupportedEncodingException;
  10. import java.security.InvalidAlgorithmParameterException;
  11. import java.security.InvalidKeyException;
  12. import java.security.NoSuchAlgorithmException;
  13. import java.util.logging.Level;
  14. import java.util.logging.Logger;
  15. import javax.crypto.BadPaddingException;
  16. import javax.crypto.Cipher;
  17. import javax.crypto.IllegalBlockSizeException;
  18. import javax.crypto.NoSuchPaddingException;
  19. import javax.crypto.SecretKey;
  20. import javax.crypto.spec.SecretKeySpec;
  21. import key.BlenderKey;
  22. /**
  23. *
  24. * @author Milan
  25. */
  26. public class BlowFish implements Blender{
  27. private static final String TAG = "Blowfish : ";
  28. private SecretKey secretKey;
  29. private Cipher cipher;
  30. public BlowFish(){
  31. try {
  32. cipher = Cipher.getInstance("Blowfish");
  33. } catch (NoSuchAlgorithmException | NoSuchPaddingException ex) {
  34. Logger.getLogger(BlowFish.class.getName()).log(Level.SEVERE, null, ex);
  35. }
  36. }
  37. @Override
  38. public byte[] encryption(String text) {
  39. try{
  40. if(text == null || secretKey == null)
  41. return null;
  42. SecretKeySpec secretKeySpec = new SecretKeySpec(secretKey.getEncoded(), "Blowfish");
  43. cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec);
  44. return cipher.doFinal(text.getBytes());
  45. }catch(InvalidKeyException | IllegalBlockSizeException | BadPaddingException e){
  46. System.out.println(TAG + e.getMessage());
  47. }
  48. return null;
  49. }
  50. @Override
  51. public String decryption(byte[] ciphertext) {
  52. try{
  53. if(ciphertext == null || secretKey == null)
  54. return null;
  55. SecretKeySpec secretKeySpec = new SecretKeySpec(secretKey.getEncoded(), "Blowfish");
  56. cipher.init(Cipher.DECRYPT_MODE, secretKeySpec, cipher.getParameters());
  57. byte[] dencryption = cipher.doFinal(ciphertext);
  58. return new String(dencryption, "UTF8");
  59. }catch(InvalidKeyException | InvalidAlgorithmParameterException | IllegalBlockSizeException | BadPaddingException | UnsupportedEncodingException e){
  60. System.out.println(TAG + e.getMessage());
  61. }
  62. return null;
  63. }
  64. @Override
  65. public int keySize() {
  66. return secretKey.getEncoded().length;
  67. }
  68. @Override
  69. public void setKey(SecretKey secretKey) {
  70. this.secretKey = secretKey;
  71. }
  72. @Override
  73. public SecretKey getKey() {
  74. return secretKey;
  75. }
  76. @Override
  77. public void generateKey(int size) {
  78. secretKey = BlenderKey.generateKey(size, "Blowfish");
  79. }
  80. @Override
  81. public void getSpecification() {
  82. StringBuilder stringBuilder = new StringBuilder();
  83. stringBuilder.append(cipher.getAlgorithm());
  84. stringBuilder.append(System.getProperty("line.separator"));
  85. stringBuilder.append(cipher.getBlockSize());
  86. stringBuilder.append(System.getProperty("line.separator"));
  87. stringBuilder.append(cipher.getProvider());
  88. stringBuilder.append(System.getProperty("line.separator"));
  89. System.out.println(stringBuilder);
  90. }
  91. @Override
  92. public Cipher getCipher() {
  93. return cipher;
  94. }
  95. }