/hg/icedtea-web: remove unused variables in JarSigner
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Fri Dec 10 07:09:44 PST 2010
changeset e9150d5accf6 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=e9150d5accf6
author: Omair Majid <omajid at redhat.com>
date: Fri Dec 10 10:07:13 2010 -0500
remove unused variables in JarSigner
2010-12-10 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/tools/JarSigner.java: Remove unused
variables collator, VERSION, IN_KEYSTORE, IN_SCOPE, privateKey,
store, keystore, nullStream, token, jarfile, alias, storepass,
protectedPath, storetype, providerName, providers, providerArgs,
keypass, sigfile, sigalg, digestalg, signedjar, tsaUrl,
tsaAlias, verify, debug, signManifest and externalSF.
(getPublisher): Remove unnecessary cast. (getRoot): Likewise.
diffstat:
2 files changed, 13 insertions(+), 45 deletions(-)
ChangeLog | 11 +++++
netx/net/sourceforge/jnlp/tools/JarSigner.java | 47 +-----------------------
diffs (112 lines):
diff -r 45c967939b39 -r e9150d5accf6 ChangeLog
--- a/ChangeLog Wed Dec 08 16:08:35 2010 -0500
+++ b/ChangeLog Fri Dec 10 10:07:13 2010 -0500
@@ -1,3 +1,14 @@ 2010-12-08 Deepak Bhole <dbhole at redhat.
+2010-12-10 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/tools/JarSigner.java: Remove unused variables
+ collator, VERSION, IN_KEYSTORE, IN_SCOPE, privateKey, store, keystore,
+ nullStream, token, jarfile, alias, storepass, protectedPath, storetype,
+ providerName, providers, providerArgs, keypass, sigfile, sigalg,
+ digestalg, signedjar, tsaUrl, tsaAlias, verify, debug, signManifest and
+ externalSF.
+ (getPublisher): Remove unnecessary cast.
+ (getRoot): Likewise.
+
2010-12-08 Deepak Bhole <dbhole at redhat.com>
PR597: Entities are parsed incorrectly in PARAM tag in applet plugin
diff -r 45c967939b39 -r e9150d5accf6 netx/net/sourceforge/jnlp/tools/JarSigner.java
--- a/netx/net/sourceforge/jnlp/tools/JarSigner.java Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/tools/JarSigner.java Fri Dec 10 10:07:13 2010 -0500
@@ -29,10 +29,7 @@ import static net.sourceforge.jnlp.runti
import java.io.*;
import java.util.*;
-import java.util.zip.*;
import java.util.jar.*;
-import java.text.Collator;
-import java.text.MessageFormat;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import java.security.cert.CertPath;
@@ -53,23 +50,12 @@ import net.sourceforge.jnlp.security.*;
public class JarSigner implements CertVerifier {
- private static final Collator collator = Collator.getInstance();
- static {
- // this is for case insensitive string comparisions
- collator.setStrength(Collator.PRIMARY);
- }
-
private static final String META_INF = "META-INF/";
// prefix for new signature-related files in META-INF directory
private static final String SIG_PREFIX = META_INF + "SIG-";
private static final long SIX_MONTHS = 180 * 24 * 60 * 60 * 1000L; //milliseconds
-
- static final String VERSION = "1.0";
-
- static final int IN_KEYSTORE = 0x01;
- static final int IN_SCOPE = 0x02;
static enum verifyResult {
UNSIGNED, SIGNED_OK, SIGNED_NOT_OK
@@ -78,36 +64,8 @@ public class JarSigner implements CertVe
// signer's certificate chain (when composing)
X509Certificate[] certChain;
- /*
- * private key
- */
- PrivateKey privateKey;
- KeyStore store;
-
- String keystore; // key store file
- boolean nullStream = false; // null keystore input stream (NONE)
- boolean token = false; // token-based keystore
- String jarfile; // jar file to sign
- String alias; // alias to sign jar with
- char[] storepass; // keystore password
- boolean protectedPath; // protected authentication path
- String storetype; // keystore type
- String providerName; // provider name
- Vector<String> providers = null; // list of providers
- HashMap<String, String> providerArgs = new HashMap<String, String>(); // arguments for provider constructors
- char[] keypass; // private key password
- String sigfile; // name of .SF file
- String sigalg; // name of signature algorithm
- String digestalg = "SHA1"; // name of digest algorithm
- String signedjar; // output filename
- String tsaUrl; // location of the Timestamping Authority
- String tsaAlias; // alias for the Timestamping Authority's certificate
- boolean verify = false; // verify the jar
boolean verbose = false; // verbose output when signing/verifying
boolean showcerts = false; // show certs when verifying
- boolean debug = false; // debug
- boolean signManifest = true; // "sign" the whole manifest
- boolean externalSF = true; // leave the .SF out of the PKCS7 block
private boolean hasExpiredCert = false;
private boolean hasExpiringCert = false;
@@ -397,7 +355,7 @@ public class JarSigner implements CertVe
if (certPath != null) {
List<? extends Certificate> certList = certPath.getCertificates();
if (certList.size() > 0) {
- return (Certificate) certList.get(0);
+ return certList.get(0);
} else {
return null;
}
@@ -413,8 +371,7 @@ public class JarSigner implements CertVe
if (certPath != null) {
List<? extends Certificate> certList = certPath.getCertificates();
if (certList.size() > 0) {
- return (Certificate) certList.get(
- certList.size() - 1);
+ return certList.get(certList.size() - 1);
} else {
return null;
}
More information about the distro-pkg-dev
mailing list