/org.xerela.tools/src/org/xerela/tools/License.java

http://xerela.googlecode.com/ · Java · 76 lines · 42 code · 9 blank · 25 comment · 3 complexity · a57e3021e4f09a8e0ee7ae9f2818c663 MD5 · raw file

  1. /*
  2. * The contents of this file are subject to the Mozilla Public License
  3. * Version 1.1 (the "License"); you may not use this file except in
  4. * compliance with the License. You may obtain a copy of the License at
  5. * http://www.mozilla.org/MPL/
  6. *
  7. * Software distributed under the License is distributed on an "AS IS"
  8. * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  9. * License for the specific language governing rights and limitations
  10. * under the License.
  11. *
  12. * The Original Code is Ziptie Client Framework.
  13. *
  14. * The Initial Developer of the Original Code is AlterPoint.
  15. * Portions created by AlterPoint are Copyright (C) 2006,
  16. * AlterPoint, Inc. All Rights Reserved.
  17. *
  18. * Contributor(s):
  19. */
  20. package org.xerela.tools;
  21. import java.io.FileInputStream;
  22. import java.io.FileOutputStream;
  23. import javax.crypto.Cipher;
  24. import javax.crypto.CipherOutputStream;
  25. import javax.crypto.spec.SecretKeySpec;
  26. /**
  27. * License
  28. */
  29. @SuppressWarnings("nls")
  30. public class License
  31. {
  32. private static final String PASS_PHRASE = "XerelaPassPhrase";
  33. private static final String ALGORITHM = "Blowfish";
  34. /**
  35. * @param args
  36. */
  37. public static void main(String[] args)
  38. {
  39. try
  40. {
  41. FileInputStream fis = new FileInputStream("license.xml");
  42. FileOutputStream fos = new FileOutputStream("license.enc");
  43. SecretKeySpec secretKeySpec = new SecretKeySpec(PASS_PHRASE.getBytes(), ALGORITHM);
  44. Cipher cipher = Cipher.getInstance(ALGORITHM);
  45. cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec);
  46. CipherOutputStream cos = new CipherOutputStream(fos, cipher);
  47. byte[] bytes = new byte[1024];
  48. while (true)
  49. {
  50. int rc = fis.read(bytes);
  51. if (rc == -1)
  52. {
  53. break;
  54. }
  55. cos.write(bytes, 0, rc);
  56. }
  57. fis.close();
  58. cos.flush();
  59. cos.close();
  60. System.out.println("License file encrypted.\n");
  61. }
  62. catch (Exception e)
  63. {
  64. e.printStackTrace();
  65. }
  66. }
  67. }