summaryrefslogtreecommitdiffstats
path: root/base/util
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-03-28 00:02:21 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-03-30 16:54:37 -0500
commita37d66662a859bd706f449edddc3ae715ee2d520 (patch)
treeebd6b8eba5b67988dfafd8bcef9607dc069cee71 /base/util
parent0b39b68e4e72cbcf0f4d28488d54ce06117efa9c (diff)
downloadpki-a37d66662a859bd706f449edddc3ae715ee2d520.tar.gz
pki-a37d66662a859bd706f449edddc3ae715ee2d520.tar.xz
pki-a37d66662a859bd706f449edddc3ae715ee2d520.zip
Replaced deprecated ApacheHttpClientExecutor.
The deprecated ApacheHttpClientExecutor class has been replaced with ApacheHttpClient4Executor. Ticket #3
Diffstat (limited to 'base/util')
-rw-r--r--base/util/src/netscape/security/x509/AlgIdDSA.java16
1 files changed, 4 insertions, 12 deletions
diff --git a/base/util/src/netscape/security/x509/AlgIdDSA.java b/base/util/src/netscape/security/x509/AlgIdDSA.java
index 0a64ad37b..a34c5f59f 100644
--- a/base/util/src/netscape/security/x509/AlgIdDSA.java
+++ b/base/util/src/netscape/security/x509/AlgIdDSA.java
@@ -31,14 +31,14 @@ import netscape.security.util.DerValue;
* by using different algorithm parameters <em>P, Q, G</em>. It uses the
* NIST/IETF standard DER encoding. These are used to implement the Digital
* Signature Standard (DSS), FIPS 186.
- *
+ *
* <P>
* <em><b>NOTE:</b> At this time, DSS/DSA Algorithm IDs must always
* include these parameters. Use of DSS/DSA in modes where parameters are
* either implicit (e.g. a default applicable to a site or a larger scope),
* or are derived from some Certificate Authority's DSS certificate, is
* not currently supported. </em>
- *
+ *
* @version 1.31
* @author David Brownell
*/
@@ -67,14 +67,6 @@ public final class AlgIdDSA extends AlgorithmId implements DSAParams {
return g;
}
- /**
- * Default constructor. The OID and parameters must be
- * deserialized before this algorithm ID is used.
- */
- // XXX deprecated for general use
- public AlgIdDSA() {
- }
-
AlgIdDSA(DerValue val) throws IOException {
super(val.getOID());
}
@@ -90,7 +82,7 @@ public final class AlgIdDSA extends AlgorithmId implements DSAParams {
* Constructs a DSS/DSA Algorithm ID from unsigned integers that
* define the algorithm parameters. Those integers are encoded
* as big-endian byte arrays.
- *
+ *
* @param p the DSS/DSA paramter "P"
* @param q the DSS/DSA paramter "Q"
* @param g the DSS/DSA paramter "G"
@@ -104,7 +96,7 @@ public final class AlgIdDSA extends AlgorithmId implements DSAParams {
/**
* Constructs a DSS/DSA Algorithm ID from numeric parameters.
- *
+ *
* @param p the DSS/DSA paramter "P"
* @param q the DSS/DSA paramter "Q"
* @param g the DSS/DSA paramter "G"