/utest-common/src/main/java/com/utest/util/CrytographicTool.java

https://github.com/carljm/caseconductor-platform · Java · 125 lines · 59 code · 25 blank · 41 comment · 4 complexity · 3dc91ce13cf763cde82f2ef511a957de MD5 · raw file

  1. /**
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. *
  15. *
  16. * @author Vadim Kisen
  17. *
  18. * copyright 2010 by uTest
  19. */
  20. package com.utest.util;
  21. import java.math.BigInteger;
  22. import java.security.Key;
  23. import javax.crypto.Cipher;
  24. import javax.crypto.spec.SecretKeySpec;
  25. import sun.misc.BASE64Decoder;
  26. import sun.misc.BASE64Encoder;
  27. public final class CrytographicTool
  28. {
  29. public enum CryptoAlgorithm
  30. {
  31. DES, BLOWFISH;
  32. }
  33. private CrytographicTool()
  34. {
  35. // avoid instantiation
  36. }
  37. /**
  38. * Encrypts a text.
  39. *
  40. * @param source
  41. * the plain text to encrypt.
  42. * @return the encrypted text.
  43. * @throws Exception
  44. */
  45. public static String encrypt(final String source, final CryptoAlgorithm algorithm, final String blowfishKey) throws Exception
  46. {
  47. String result = "";
  48. if (CryptoAlgorithm.BLOWFISH.equals(algorithm))
  49. {
  50. // From hex to bytes
  51. final byte[] keyBytes = new BigInteger(blowfishKey, 16).toByteArray();
  52. final Key key = new SecretKeySpec(keyBytes, "Blowfish");
  53. final BASE64Encoder encoder = new BASE64Encoder();
  54. final Cipher cipher = Cipher.getInstance("Blowfish/ECB/PKCS5Padding");
  55. cipher.init(Cipher.ENCRYPT_MODE, key);
  56. // Encrypt tp blowfish
  57. final byte[] ciphertext = cipher.doFinal(source.getBytes("UTF8"));
  58. // Encode to 64 bits
  59. result = encoder.encode(ciphertext);
  60. return result;
  61. }
  62. if (CryptoAlgorithm.DES.equals(algorithm))
  63. {
  64. result = DES.encrypt(source);
  65. }
  66. return result;
  67. }
  68. /**
  69. * Decrypt a text
  70. *
  71. * @param source
  72. * the encrypted text
  73. * @return the original plain text
  74. */
  75. public static String decrypt(final String source, final CryptoAlgorithm algorithm, final String blowfishKey) throws Exception
  76. {
  77. String result = "";
  78. if (CryptoAlgorithm.DES.equals(algorithm))
  79. {
  80. result = DES.decrypt(source);
  81. return result;
  82. }
  83. if (CryptoAlgorithm.BLOWFISH.equals(algorithm))
  84. {
  85. // From hex to bytes
  86. final byte[] keyBytes = new BigInteger(blowfishKey, 16).toByteArray();
  87. final Key key = new SecretKeySpec(keyBytes, "Blowfish");
  88. final Cipher cipher = Cipher.getInstance("Blowfish/ECB/PKCS5Padding");
  89. cipher.init(Cipher.DECRYPT_MODE, key);
  90. final BASE64Decoder decoder = new BASE64Decoder();
  91. // the replace is due to a replace that the service is doing and
  92. // when we get that string from the server, we have some problems.
  93. final byte[] textToCipher = decoder.decodeBuffer(source.replace(" ", "+"));
  94. final byte[] ciphertext = cipher.doFinal(textToCipher);
  95. result = new String(ciphertext, "UTF8");
  96. return result;
  97. }
  98. return result;
  99. }
  100. }