src/java.base/share/classes/sun/security/provider/DSA.java
changeset 48080 18a4438eb690
parent 47216 71c04702a3d5
child 50204 3195a713e24d
equal deleted inserted replaced
48079:eaa406097d93 48080:18a4438eb690
   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      */