summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/provider/DSAKeyFactory.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-04-05 14:49:11 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-04-09 10:03:25 -0500
commit7c7b9d023cd466c1771068badc020dab36beb553 (patch)
tree178877eb83e25336be7577953945fbdb0b9e1a15 /base/util/src/netscape/security/provider/DSAKeyFactory.java
parentda1e6e2f49f66fd46c8039ff1aa4386309fba8f4 (diff)
downloadpki-7c7b9d023cd466c1771068badc020dab36beb553.tar.gz
pki-7c7b9d023cd466c1771068badc020dab36beb553.tar.xz
pki-7c7b9d023cd466c1771068badc020dab36beb553.zip
Removed whitespaces from Java code.
Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
Diffstat (limited to 'base/util/src/netscape/security/provider/DSAKeyFactory.java')
-rwxr-xr-xbase/util/src/netscape/security/provider/DSAKeyFactory.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/base/util/src/netscape/security/provider/DSAKeyFactory.java b/base/util/src/netscape/security/provider/DSAKeyFactory.java
index 41f0081f2..ada152921 100755
--- a/base/util/src/netscape/security/provider/DSAKeyFactory.java
+++ b/base/util/src/netscape/security/provider/DSAKeyFactory.java
@@ -32,11 +32,11 @@ import java.security.spec.X509EncodedKeySpec;
/**
* This class implements the DSA key factory of the Sun provider.
- *
+ *
* @author Jan Luehe
- *
+ *
* @version 1.8, 97/12/10
- *
+ *
* @since JDK1.2
*/
@@ -45,11 +45,11 @@ public class DSAKeyFactory extends KeyFactorySpi {
/**
* Generates a public key object from the provided key specification
* (key material).
- *
+ *
* @param keySpec the specification (key material) of the public key
- *
+ *
* @return the public key
- *
+ *
* @exception InvalidKeySpecException if the given key specification
* is inappropriate for this key factory to produce a public key.
*/
@@ -77,11 +77,11 @@ public class DSAKeyFactory extends KeyFactorySpi {
/**
* Generates a private key object from the provided key specification
* (key material).
- *
+ *
* @param keySpec the specification (key material) of the private key
- *
+ *
* @return the private key
- *
+ *
* @exception InvalidKeySpecException if the given key specification
* is inappropriate for this key factory to produce a private key.
*/
@@ -109,15 +109,15 @@ public class DSAKeyFactory extends KeyFactorySpi {
/**
* Returns a specification (key material) of the given key object
* in the requested format.
- *
+ *
* @param key the key
- *
+ *
* @param keySpec the requested format in which the key material shall be
* returned
- *
+ *
* @return the underlying key specification (key material) in the
* requested format
- *
+ *
* @exception InvalidKeySpecException if the requested key specification is
* inappropriate for the given key, or the given key cannot be processed
* (e.g., the given key has an unrecognized algorithm or format).
@@ -188,11 +188,11 @@ public class DSAKeyFactory extends KeyFactorySpi {
/**
* Translates a key object, whose provider may be unknown or potentially
* untrusted, into a corresponding key object of this key factory.
- *
+ *
* @param key the key whose provider is unknown or untrusted
- *
+ *
* @return the translated key
- *
+ *
* @exception InvalidKeyException if the given key cannot be processed by
* this key factory.
*/