/framework/base/src/org/ofbiz/base/crypto/BlowFishCrypt.java

https://bitbucket.org/sudhirk76/ogb12 · Java · 172 lines · 95 code · 27 blank · 50 comment · 6 complexity · 3809f0766a76770d08831dac42135d00 MD5 · raw file

  1. /*******************************************************************************
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *******************************************************************************/
  19. package org.ofbiz.base.crypto;
  20. import java.io.File;
  21. import java.io.FileInputStream;
  22. import java.io.FileOutputStream;
  23. import java.io.ObjectInputStream;
  24. import java.io.ObjectOutputStream;
  25. import java.security.NoSuchAlgorithmException;
  26. import javax.crypto.Cipher;
  27. import javax.crypto.KeyGenerator;
  28. import javax.crypto.SecretKey;
  29. import javax.crypto.spec.SecretKeySpec;
  30. /**
  31. * Blowfish (Two-Way) Byte/String encryption
  32. *
  33. */
  34. public class BlowFishCrypt {
  35. private SecretKeySpec secretKeySpec = null;
  36. /**
  37. * Creates a new BlowFishCrypt object.
  38. * @param secretKeySpec A SecretKeySpec object.
  39. */
  40. public BlowFishCrypt(SecretKeySpec secretKeySpec) {
  41. this.secretKeySpec = secretKeySpec;
  42. }
  43. /**
  44. * Creates a new BlowFishCrypt object.
  45. * @param key An encoded secret key
  46. */
  47. public BlowFishCrypt(byte[] key) {
  48. try {
  49. secretKeySpec = new SecretKeySpec(key, "Blowfish");
  50. } catch (Exception e) {}
  51. }
  52. /**
  53. * Creates a new BlowFishCrypt object.
  54. * @param keyFile A file object containing the secret key as a String object.
  55. */
  56. public BlowFishCrypt(File keyFile) {
  57. try {
  58. FileInputStream is = new FileInputStream(keyFile);
  59. ObjectInputStream os = new ObjectInputStream(is);
  60. String keyString = (String) os.readObject();
  61. is.close();
  62. byte[] keyBytes = keyString.getBytes();
  63. secretKeySpec = new SecretKeySpec(keyBytes, "Blowfish");
  64. } catch (Exception e) {}
  65. }
  66. /**
  67. * Encrypt the string with the secret key.
  68. * @param string The string to encrypt.
  69. */
  70. public byte[] encrypt(String string) {
  71. return encrypt(string.getBytes());
  72. }
  73. /**
  74. * Decrypt the string with the secret key.
  75. * @param string The string to decrypt.
  76. */
  77. public byte[] decrypt(String string) {
  78. return decrypt(string.getBytes());
  79. }
  80. /**
  81. * Encrypt the byte array with the secret key.
  82. * @param bytes The array of bytes to encrypt.
  83. */
  84. public byte[] encrypt(byte[] bytes) {
  85. byte[] resp = null;
  86. try {
  87. resp = crypt(bytes, Cipher.ENCRYPT_MODE);
  88. } catch (Exception e) {
  89. return null;
  90. }
  91. return resp;
  92. }
  93. /**
  94. * Decrypt the byte array with the secret key.
  95. * @param bytes The array of bytes to decrypt.
  96. */
  97. public byte[] decrypt(byte[] bytes) {
  98. byte[] resp = null;
  99. try {
  100. resp = crypt(bytes, Cipher.DECRYPT_MODE);
  101. } catch (Exception e) {
  102. return null;
  103. }
  104. return resp;
  105. }
  106. private byte[] crypt(byte[] bytes, int mode) throws Exception {
  107. if (secretKeySpec == null)
  108. throw new Exception("SecretKey cannot be null.");
  109. Cipher cipher = Cipher.getInstance("Blowfish");
  110. cipher.init(mode, secretKeySpec);
  111. return cipher.doFinal(bytes);
  112. }
  113. public static byte[] generateKey() throws NoSuchAlgorithmException {
  114. KeyGenerator keyGen = KeyGenerator.getInstance("Blowfish");
  115. keyGen.init(448);
  116. SecretKey secretKey = keyGen.generateKey();
  117. byte[] keyBytes = secretKey.getEncoded();
  118. return keyBytes;
  119. }
  120. public static boolean testKey(byte[] key) {
  121. String testString = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstufwxyz";
  122. BlowFishCrypt c = new BlowFishCrypt(key);
  123. byte[] encryptedBytes = c.encrypt(testString);
  124. String encryptedMessage = new String(encryptedBytes);
  125. byte[] decryptedBytes = c.decrypt(encryptedMessage);
  126. String decryptedMessage = new String(decryptedBytes);
  127. if (testString.equals(decryptedMessage)) {
  128. return true;
  129. }
  130. return false;
  131. }
  132. public static void main(String args[]) throws Exception {
  133. if (args[0] == null) {
  134. args[0] = "ofbkey";
  135. }
  136. byte[] key = generateKey();
  137. if (testKey(key)) {
  138. FileOutputStream fos = new FileOutputStream(args[0]);
  139. ObjectOutputStream os = new ObjectOutputStream(fos);
  140. String keyString = new String(key);
  141. os.writeObject(keyString);
  142. fos.close();
  143. }
  144. }
  145. }