/src/main/java/org/primefaces/util/StringEncrypter.java

http://primefaces.googlecode.com/ · Java · 139 lines · 64 code · 29 blank · 46 comment · 0 complexity · 62101343ad776a194e8f397a8cc42e6f MD5 · raw file

  1. package org.primefaces.util;
  2. // CIPHER / GENERATORS
  3. import javax.crypto.Cipher;
  4. import javax.crypto.SecretKey;
  5. // KEY SPECIFICATIONS
  6. import java.security.spec.KeySpec;
  7. import java.security.spec.AlgorithmParameterSpec;
  8. import java.util.logging.Level;
  9. import java.util.logging.Logger;
  10. import javax.crypto.spec.PBEKeySpec;
  11. import javax.crypto.SecretKeyFactory;
  12. import javax.crypto.spec.PBEParameterSpec;
  13. // EXCEPTIONS
  14. import javax.faces.FacesException;
  15. /**
  16. * ----------------------------------------------------------------------------- The following example implements a class for encrypting and decrypting strings
  17. * using several Cipher algorithms. The class is created with a key and can be used repeatedly to encrypt and decrypt strings using that key. Some of the more
  18. * popular algorithms are: Blowfish DES DESede PBEWithMD5AndDES PBEWithMD5AndTripleDES TripleDES
  19. *
  20. * @version 1.0
  21. * @author Jeffrey M. Hunter (jhunter@idevelopment.info)
  22. * @author http://www.idevelopment.info -----------------------------------------------------------------------------
  23. */
  24. public class StringEncrypter {
  25. private static final Logger LOG = Logger.getLogger(StringEncrypter.class.getName());
  26. private Cipher ecipher;
  27. private Cipher dcipher;
  28. /**
  29. * Constructor used to create this object. Responsible for setting and initializing this object's encrypter and decrypter Chipher instances given a Secret
  30. * Key and algorithm.
  31. *
  32. * @param key Secret Key used to initialize both the encrypter and decrypter instances.
  33. * @param algorithm Which algorithm to use for creating the encrypter and decrypter instances.
  34. */
  35. public StringEncrypter(SecretKey key, String algorithm) {
  36. try {
  37. ecipher = Cipher.getInstance(algorithm);
  38. dcipher = Cipher.getInstance(algorithm);
  39. ecipher.init(Cipher.ENCRYPT_MODE, key);
  40. dcipher.init(Cipher.DECRYPT_MODE, key);
  41. } catch (Exception e) {
  42. throw new FacesException("Could not initialize Cipher objects", e);
  43. }
  44. }
  45. /**
  46. * Constructor used to create this object. Responsible for setting and initializing this object's encrypter and decrypter Chipher instances given a Pass
  47. * Phrase and algorithm.
  48. *
  49. * @param passPhrase Pass Phrase used to initialize both the encrypter and decrypter instances.
  50. */
  51. public StringEncrypter(String passPhrase) {
  52. // 8-bytes Salt
  53. byte[] salt = {
  54. (byte) 0xA9, (byte) 0x9B, (byte) 0xC8, (byte) 0x32,
  55. (byte) 0x56, (byte) 0x34, (byte) 0xE3, (byte) 0x03
  56. };
  57. // Iteration count
  58. int iterationCount = 19;
  59. try {
  60. KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
  61. SecretKey key = SecretKeyFactory.getInstance("PBEWithMD5AndDES").generateSecret(keySpec);
  62. ecipher = Cipher.getInstance("PBEWithMD5AndDES");
  63. dcipher = Cipher.getInstance("PBEWithMD5AndDES");
  64. // Prepare the parameters to the cipthers
  65. AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);
  66. ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
  67. dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
  68. } catch (Exception e) {
  69. throw new FacesException("Could not initialize Cipher objects", e);
  70. }
  71. }
  72. /**
  73. * Takes a single String as an argument and returns an Encrypted version of that String.
  74. *
  75. * @param str String to be encrypted
  76. * @return <code>String</code> Encrypted version of the provided String
  77. */
  78. public String encrypt(String str) {
  79. try {
  80. // Encode the string into bytes using utf-8
  81. byte[] utf8 = str.getBytes("UTF8");
  82. // Encrypt
  83. byte[] enc = ecipher.doFinal(utf8);
  84. // Encode bytes to base64 to get a string
  85. return Base64.encodeToString(enc, false);
  86. } catch (Exception e) {
  87. LOG.log(Level.WARNING, "Could not encrypt string", e);
  88. }
  89. return null;
  90. }
  91. /**
  92. * Takes a encrypted String as an argument, decrypts and returns the decrypted String.
  93. *
  94. * @param str Encrypted String to be decrypted
  95. * @return <code>String</code> Decrypted version of the provided String
  96. */
  97. public String decrypt(String str) {
  98. try {
  99. // Decode base64 to get bytes
  100. byte[] dec = Base64.decode(str);
  101. // Decrypt
  102. byte[] utf8 = dcipher.doFinal(dec);
  103. // Decode using utf-8
  104. return new String(utf8, "UTF8");
  105. } catch (Exception e) {
  106. LOG.log(Level.WARNING, "Could not decrypt string", e);
  107. }
  108. return null;
  109. }
  110. }