/DissectMail-head/src/main/java/br/com/mailanalyzer/utils/VerhoeffUtil.java

http://mailanalyzer.googlecode.com/ · Java · 110 lines · 63 code · 14 blank · 33 comment · 5 complexity · a0aaf515fa22976f76d1c43339e29112 MD5 · raw file

  1. package br.com.mailanalyzer.utils;
  2. /**
  3. *
  4. * @author Lucas Israel
  5. * @contact mcluck.ti@gmail.com
  6. * @version 1.0
  7. * @Date 29-04-2011
  8. *
  9. */
  10. public class VerhoeffUtil {
  11. /**
  12. * Nova instancia de VerhoeffUtil. <br />
  13. * Esta classe e usada para gerar digito verificado em uma sequencia de numeros.
  14. * Isto e largamente utilizado em validacoes de numeros bancarios (cartoes de creditos, cheques), documentos governamentais e em muitos protocolos de diversos sistemas.
  15. */
  16. public VerhoeffUtil(){
  17. }
  18. // The multiplication table
  19. static int[][] d = {
  20. {0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
  21. {1, 2, 3, 4, 0, 6, 7, 8, 9, 5},
  22. {2, 3, 4, 0, 1, 7, 8, 9, 5, 6},
  23. {3, 4, 0, 1, 2, 8, 9, 5, 6, 7},
  24. {4, 0, 1, 2, 3, 9, 5, 6, 7, 8},
  25. {5, 9, 8, 7, 6, 0, 4, 3, 2, 1},
  26. {6, 5, 9, 8, 7, 1, 0, 4, 3, 2},
  27. {7, 6, 5, 9, 8, 2, 1, 0, 4, 3},
  28. {8, 7, 6, 5, 9, 3, 2, 1, 0, 4},
  29. {9, 8, 7, 6, 5, 4, 3, 2, 1, 0}
  30. };
  31. // The permutation table
  32. static int[][] p = {
  33. {0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
  34. {1, 5, 7, 6, 2, 8, 3, 0, 9, 4},
  35. {5, 8, 0, 3, 7, 9, 6, 1, 4, 2},
  36. {8, 9, 1, 6, 0, 4, 3, 5, 2, 7},
  37. {9, 4, 5, 3, 1, 2, 6, 8, 7, 0},
  38. {4, 2, 8, 6, 5, 7, 3, 9, 0, 1},
  39. {2, 7, 9, 3, 8, 0, 6, 4, 1, 5},
  40. {7, 0, 4, 6, 9, 1, 3, 2, 5, 8}
  41. };
  42. // The inverse table
  43. static int[] inv = {0, 4, 3, 2, 1, 5, 6, 7, 8, 9};
  44. /**
  45. * Validates that an entered number is Verhoeff compliant.<br/>
  46. * NB: Make sure the check digit is the last one.
  47. * @param num
  48. * @return
  49. */
  50. public static boolean validateVerhoeff(String num) {
  51. int c = 0;
  52. int[] myArray = StringToReversedIntArray(num);
  53. for (int i = 0; i < myArray.length; i++) {
  54. c = d[c][p[(i % 8)][myArray[i]]];
  55. }
  56. return (c == 0);
  57. }
  58. public static void main(String []ar){
  59. String num = "12563876874";
  60. System.out.println(VerhoeffUtil.generateVerhoeff(num));
  61. }
  62. /*
  63. * Converts a string to a reversed integer array.
  64. */
  65. private static int[] StringToReversedIntArray(String num) {
  66. int[] myArray = new int[num.length()];
  67. for (int i = 0; i < num.length(); i++) {
  68. myArray[i] = Integer.parseInt(num.substring(i, i + 1));
  69. }
  70. myArray = Reverse(myArray);
  71. return myArray;
  72. }
  73. /**
  74. * For a given number generates a Verhoeff digit
  75. * @param num String uma String contendo o numero a ser gerado o verificador
  76. * @return Uma String contendo o digito verificador para o parametro informado
  77. */
  78. public static String generateVerhoeff(String num) {
  79. int c = 0;
  80. int[] myArray = StringToReversedIntArray(num);
  81. for (int i = 0; i < myArray.length; i++) {
  82. c = d[c][p[((i + 1) % 8)][myArray[i]]];
  83. }
  84. return Integer.toString(inv[c]);
  85. }
  86. /*
  87. * Reverses an int array
  88. */
  89. private static int[] Reverse(int[] myArray) {
  90. int[] reversed = new int[myArray.length];
  91. for (int i = 0; i < myArray.length; i++) {
  92. reversed[i] = myArray[myArray.length - (i + 1)];
  93. }
  94. return reversed;
  95. }
  96. }