/ainotebook/socialnet/src/org/bresearch/websec/utils/botlist/BotlistUniqueId.java

http://ainotebook.googlecode.com/ · Java · 103 lines · 39 code · 15 blank · 49 comment · 2 complexity · 18356423ad8996616be4b46e77907c07 MD5 · raw file

  1. /**
  2. * Berlin Brown
  3. * Dec 6, 2006
  4. *
  5. * -------------------------- COPYRIGHT_AND_LICENSE --
  6. * Botlist contains an open source suite of software applications for
  7. * social bookmarking and collecting online news content for use on the web.
  8. * Multiple web front-ends exist for Django, Rails, and J2EE.
  9. * Users and remote agents are allowed to submit interesting articles.
  10. *
  11. * Copyright (c) 2007, Botnode.com (Berlin Brown)
  12. * http://www.opensource.org/licenses/bsd-license.php
  13. *
  14. * All rights reserved.
  15. *
  16. * Redistribution and use in source and binary forms, with or without modification,
  17. * are permitted provided that the following conditions are met:
  18. *
  19. * * Redistributions of source code must retain the above copyright notice,
  20. * this list of conditions and the following disclaimer.
  21. * * Redistributions in binary form must reproduce the above copyright notice,
  22. * this list of conditions and the following disclaimer in the documentation
  23. * and/or other materials provided with the distribution.
  24. * * Neither the name of the Botnode.com (Berlin Brown) nor
  25. * the names of its contributors may be used to endorse or promote
  26. * products derived from this software without specific prior written permission.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  31. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  32. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  33. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  34. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  35. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  36. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  37. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  38. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  39. * -------------------------- END_COPYRIGHT_AND_LICENSE --
  40. */
  41. package org.bresearch.websec.utils.botlist;
  42. import java.net.InetAddress;
  43. import java.net.UnknownHostException;
  44. import java.security.MessageDigest;
  45. import java.security.NoSuchAlgorithmException;
  46. import java.util.Random;
  47. /**
  48. * This is class is used by botverse.
  49. *
  50. * Usage: BotListUniqueId.getUniqueId())
  51. * @author Berlin Brown
  52. *
  53. */
  54. public class BotlistUniqueId {
  55. private String toHexString(byte[] bytes) {
  56. char[] ret = new char[bytes.length * 2];
  57. for (int i = 0, j = 0; i < bytes.length; i++) {
  58. int c = (int) bytes[i];
  59. if (c < 0) {
  60. c += 0x100;
  61. }
  62. ret[j++] = Character.forDigit(c / 0x10, 0x10);
  63. ret[j++] = Character.forDigit(c % 0x10, 0x10);
  64. }
  65. return new String(ret);
  66. }
  67. public String getUniqueId() {
  68. String digest = "";
  69. try {
  70. MessageDigest md = MessageDigest.getInstance("MD5");
  71. String timeVal = "" + (System.currentTimeMillis() + 1);
  72. String localHost = "";;
  73. try {
  74. localHost = InetAddress.getLocalHost().toString();
  75. } catch (UnknownHostException e) {
  76. // If an error, we can use other values.
  77. }
  78. String randVal = "" + new Random().nextInt();
  79. String val = timeVal + localHost + randVal;
  80. md.reset();
  81. md.update(val.getBytes());
  82. // Generate the digest.
  83. digest = toHexString(md.digest());
  84. } catch(NoSuchAlgorithmException e) {
  85. } // End of the Try - Catch
  86. return digest;
  87. } // End of the Method //
  88. }