/org.xerela.provider.security/src/org/xerela/provider/security/internal/LicenseElf.java

http://xerela.googlecode.com/ · Java · 92 lines · 55 code · 11 blank · 26 comment · 5 complexity · 2ad301acff1f2e5b5956bb3f9e81917e 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.provider.security.internal;
  21. import java.io.ByteArrayInputStream;
  22. import java.io.FileInputStream;
  23. import java.io.InputStream;
  24. import java.util.Properties;
  25. import javax.crypto.Cipher;
  26. import javax.crypto.CipherInputStream;
  27. import javax.crypto.spec.SecretKeySpec;
  28. import org.xerela.provider.security.License;
  29. /**
  30. * LicenseElf
  31. */
  32. @SuppressWarnings("nls")
  33. public final class LicenseElf
  34. {
  35. private static final String PASS_PHRASE = "XerelaPassPhrase";
  36. private static final String ALGORITHM = "Blowfish";
  37. private static License license;
  38. /**
  39. * Private default constructor
  40. */
  41. private LicenseElf()
  42. {
  43. // private constructor
  44. }
  45. public synchronized static License loadLicense()
  46. {
  47. if (license != null)
  48. {
  49. return license;
  50. }
  51. try
  52. {
  53. SecretKeySpec secretKeySpec = new SecretKeySpec(PASS_PHRASE.getBytes(), ALGORITHM);
  54. Cipher cipher = Cipher.getInstance(ALGORITHM);
  55. cipher.init(Cipher.DECRYPT_MODE, secretKeySpec);
  56. InputStream is = new FileInputStream("osgi-config/security/license.enc");
  57. CipherInputStream cis = new CipherInputStream(is, cipher);
  58. int offset = 0;
  59. byte[] bytes = new byte[2048];
  60. while (true)
  61. {
  62. int rc = cis.read(bytes, offset, bytes.length - offset);
  63. if (rc == -1)
  64. {
  65. break;
  66. }
  67. offset += rc;
  68. }
  69. is.close();
  70. cis.close();
  71. Properties licenseProps = new Properties();
  72. licenseProps.loadFromXML(new ByteArrayInputStream(bytes, 0, offset));
  73. license = new License(licenseProps);
  74. return license;
  75. }
  76. catch (Exception e)
  77. {
  78. throw new RuntimeException("Unable to load license file.", e);
  79. }
  80. }
  81. }