equal
deleted
inserted
replaced
486 } |
486 } |
487 if (presetY == null && presetX == null) { |
487 if (presetY == null && presetX == null) { |
488 printable += "\n\tUNINIIALIZED"; |
488 printable += "\n\tUNINIIALIZED"; |
489 } |
489 } |
490 return printable; |
490 return printable; |
491 } |
|
492 |
|
493 private static void debug(Exception e) { |
|
494 if (debug) { |
|
495 e.printStackTrace(); |
|
496 } |
|
497 } |
|
498 |
|
499 private static void debug(String s) { |
|
500 if (debug) { |
|
501 System.err.println(s); |
|
502 } |
|
503 } |
491 } |
504 |
492 |
505 /** |
493 /** |
506 * Standard SHA224withDSA implementation as defined in FIPS186-3. |
494 * Standard SHA224withDSA implementation as defined in FIPS186-3. |
507 */ |
495 */ |