/src/eu/telecom_bretagne/praxis/common/CipherUtils.java

https://gitlab.com/praxis/praxis-core · Java · 119 lines · 96 code · 17 blank · 6 comment · 10 complexity · 35ad2a4797631136b84c3e542b07cd72 MD5 · raw file

  1. /* License: please refer to the file README.license located at the root directory of the project */
  2. package eu.telecom_bretagne.praxis.common;
  3. import java.io.File;
  4. import java.io.FileInputStream;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.io.InputStream;
  8. import java.io.UnsupportedEncodingException;
  9. import java.security.InvalidKeyException;
  10. import java.security.Key;
  11. import java.security.NoSuchAlgorithmException;
  12. import java.util.Arrays;
  13. import javax.crypto.BadPaddingException;
  14. import javax.crypto.Cipher;
  15. import javax.crypto.CipherInputStream;
  16. import javax.crypto.IllegalBlockSizeException;
  17. import javax.crypto.NoSuchPaddingException;
  18. import javax.crypto.spec.SecretKeySpec;
  19. public class CipherUtils
  20. {
  21. private static String algo = "Blowfish";
  22. /**
  23. * Copies the specified array, truncating or padding with zeros
  24. * (if necessary) so the copy has the specified length.
  25. * (copy/pasted from javadoc 1.6, Array.copyOf())
  26. */
  27. public static byte[] copyOf(byte[] original, int newLength)
  28. {
  29. byte[] copy = new byte[newLength];
  30. Arrays.fill(copy, (byte)0);
  31. for (int i=0; i<Math.min(original.length, newLength); i++)
  32. copy[i] = original[i];
  33. return copy;
  34. }
  35. public static void encrypt(String password, File input, File output)
  36. throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
  37. byte[] buf = copyOf(password.getBytes("ISO-8859-1"), Cipher.getMaxAllowedKeyLength(algo)/8);
  38. Key key = new SecretKeySpec(buf, algo);
  39. Cipher cipher = Cipher.getInstance(algo);
  40. cipher.init(Cipher.ENCRYPT_MODE, key);
  41. try (CipherInputStream cis = new CipherInputStream(new FileInputStream(input), cipher);
  42. FileOutputStream fos = new FileOutputStream(output))
  43. {
  44. int numRead = 0;
  45. while ( ( numRead = cis.read(buf) ) >= 0 )
  46. {
  47. fos.write(buf, 0, numRead);
  48. }
  49. }
  50. }
  51. public static String encrypt(File inputFile, String input, String charset)
  52. throws UnsupportedEncodingException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException
  53. {
  54. byte[] buf = copyOf((inputFile.getName()+"DESede/ECB/ISO10126Padding").getBytes("ISO-8859-1"), Cipher.getMaxAllowedKeyLength(algo)/8);
  55. Key key = new SecretKeySpec(buf, algo);
  56. Cipher cipher = Cipher.getInstance(algo);
  57. cipher.init(Cipher.ENCRYPT_MODE, key);
  58. return new String(cipher.doFinal(input.getBytes(charset)));
  59. }
  60. public static InputStream decryptedStream(InputStream stream, String filename)
  61. throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException
  62. {
  63. return decryptedStream(filename+"DESede/ECB/ISO10126Padding", stream);
  64. }
  65. public static InputStream decryptedStream(String password, File input)
  66. throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException
  67. {
  68. try (InputStream is = new FileInputStream(input)) {
  69. return decryptedStream(password, is);
  70. }
  71. }
  72. protected static InputStream decryptedStream(String password, InputStream stream)
  73. throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException
  74. {
  75. byte[] buf = copyOf(password.getBytes("ISO-8859-1"), Cipher.getMaxAllowedKeyLength(algo)/8);
  76. Key key = new SecretKeySpec(buf, algo);
  77. Cipher cipher = Cipher.getInstance(algo);
  78. cipher.init(Cipher.DECRYPT_MODE, key);
  79. return new CipherInputStream(stream, cipher);
  80. }
  81. public static String decrypt(String password, File input)
  82. throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException {
  83. InputStream is = decryptedStream(password, input);
  84. byte[] buf = new byte[1024];
  85. int numRead = 0;
  86. String result = "";
  87. while ((numRead = is.read(buf)) >= 0) {
  88. result += new String(buf, 0, numRead);
  89. }
  90. is.close();
  91. return result;
  92. }
  93. public static void main(String[] args) throws Exception
  94. {
  95. if ( args.length == 4 && args[0].equals("encrypt") )
  96. encrypt(args[1], new File(args[2]), new File(args[3]));
  97. else if ( args.length == 3 && args[0].equals("decrypt") )
  98. System.out.println(decrypt(args[1], new File(args[2])));
  99. else
  100. System.err.println("Usage: encrypt pass src dst / decrypt pass src\n");
  101. }
  102. }