/gemfire-core/src/main/java/com/gemstone/gemfire/internal/util/PasswordUtil.java

https://gitlab.com/kidaa/incubator-geode · Java · 124 lines · 65 code · 8 blank · 51 comment · 6 complexity · c15c39d5d383caf06da045c470536416 MD5 · raw file

  1. /*
  2. * =========================================================================
  3. * Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved.
  4. * This product is protected by U.S. and international copyright
  5. * and intellectual property laws. Pivotal products are covered by
  6. * more patents listed at http://www.pivotal.io/patents.
  7. * ========================================================================
  8. */
  9. package com.gemstone.gemfire.internal.util;
  10. import com.gemstone.gemfire.internal.i18n.LocalizedStrings;
  11. import javax.crypto.Cipher;
  12. import javax.crypto.spec.SecretKeySpec;
  13. /**
  14. * Generates an encrypted password, used by the gemfire encrypt-password
  15. * command. Makes use of Blowfish algorithm to encrypt/decrypt password string
  16. *
  17. * <p>
  18. * This shows a sample command invocation and output (assuming password is the
  19. * actual password for the datasource): <br>
  20. * <br>
  21. * bash-2.05$ $GEMFIRE/bin/gemfire encrypt-password password<br>
  22. * Using system directory "/home/users/jpearson/gemfire/defaultSystem".<br>
  23. * Encrypted to 83f0069202c571faf1ae6c42b4ad46030e4e31c17409e19a <br>
  24. * <br>
  25. * Copy the output from the gemfire command to the cache.xml file as the value
  26. * of the password attribute of the jndi-binding tag embedded in encrypted(),
  27. * just like a method parameter.<br>
  28. * Enter it as encrypted, in this format:
  29. * password="encrypted(83f0069202c571faf1ae6c42b4ad46030e4e31c17409e19a)"<br>
  30. * To use a non-encrypted password, put the actual password as the value of the
  31. * password attribute of the jndi-binding tag, like this: password="password"
  32. * <br>
  33. *
  34. * @author Yogesh Mahajan
  35. */
  36. public class PasswordUtil {
  37. private static byte[] init = "string".getBytes();
  38. /**
  39. * Encrypts a password string
  40. *
  41. * @param password
  42. * String to be encrypted.
  43. * @return String encrypted String
  44. */
  45. public static String encrypt(String password) {
  46. return encrypt(password, true);
  47. }
  48. /**
  49. *
  50. * @param password String to be encrypted
  51. * @param echo if true prints result to system.out
  52. * @return String encrypted String
  53. */
  54. public static String encrypt(String password, boolean echo) {
  55. String encryptedString = null;
  56. try {
  57. SecretKeySpec key = new SecretKeySpec(init, "Blowfish");
  58. Cipher cipher = Cipher.getInstance("Blowfish");
  59. cipher.init(Cipher.ENCRYPT_MODE, key);
  60. byte[] encrypted = cipher.doFinal(password.getBytes());
  61. encryptedString = byteArrayToHexString(encrypted);
  62. if (echo) {
  63. System.out.println(LocalizedStrings.PasswordUtil_ENCRYPTED_TO_0
  64. .toLocalizedString(encryptedString));
  65. }
  66. }
  67. catch (Exception e) {
  68. e.printStackTrace();
  69. }
  70. return encryptedString;
  71. }
  72. /**
  73. * Decrypts an encrypted password string.
  74. *
  75. * @param password
  76. * String to be decrypted
  77. * @return String decrypted String
  78. */
  79. public static String decrypt(String password) {
  80. if (password.startsWith("encrypted(") && password.endsWith(")")) {
  81. byte[] decrypted = null;
  82. try {
  83. String toDecrypt = password.substring(10, password.length() - 1);
  84. SecretKeySpec key = new SecretKeySpec(init, "Blowfish");
  85. Cipher cipher = Cipher.getInstance("Blowfish");
  86. cipher.init(Cipher.DECRYPT_MODE, key);
  87. decrypted = cipher.doFinal(hexStringToByteArray(toDecrypt));
  88. return new String(decrypted);
  89. }
  90. catch (Exception e) {
  91. e.printStackTrace();
  92. }
  93. }
  94. return password;
  95. }
  96. private static String byteArrayToHexString(byte[] b) {
  97. StringBuilder sb = new StringBuilder(b.length * 2);
  98. for (int i = 0; i < b.length; i++) {
  99. int v = b[i] & 0xff;
  100. if (v < 16) {
  101. sb.append('0');
  102. }
  103. sb.append(Integer.toHexString(v));
  104. }
  105. return sb.toString().toUpperCase();
  106. }
  107. private static byte[] hexStringToByteArray(String s) {
  108. byte[] b = new byte[s.length() / 2];
  109. for (int i = 0; i < b.length; i++) {
  110. int index = i * 2;
  111. int v = Integer.parseInt(s.substring(index, index + 2), 16);
  112. b[i] = (byte)v;
  113. }
  114. return b;
  115. }
  116. }