src/java.base/share/classes/sun/security/provider/DSA.java
changeset 51986 c1db377f6300
parent 51508 f99640a44d75
equal deleted inserted replaced
51985:08c296fe9458 51986:c1db377f6300
   103 
   103 
   104     /**
   104     /**
   105      * Construct a blank DSA object that will use the specified
   105      * Construct a blank DSA object that will use the specified
   106      * signature format. {@code p1363Format} should be {@code true} to
   106      * signature format. {@code p1363Format} should be {@code true} to
   107      * use the IEEE P1363 format. If {@code p1363Format} is {@code false},
   107      * use the IEEE P1363 format. If {@code p1363Format} is {@code false},
   108      * the DER-encoded ASN.1 format will used. The DSA object must be
   108      * the DER-encoded ASN.1 format will be used. The DSA object must be
   109      * initialized before being usable for signing or verifying.
   109      * initialized before being usable for signing or verifying.
   110      */
   110      */
   111     DSA(MessageDigest md, boolean p1363Format) {
   111     DSA(MessageDigest md, boolean p1363Format) {
   112         super();
   112         super();
   113         this.md = md;
   113         this.md = md;