Commit ea7f51a4 by Warren Levy Committed by Warren Levy

Key.java (serialVersionUID): Set to 0 for now.

	* java/security/Key.java(serialVersionUID): Set to 0 for now.
	* java/security/interfaces/DSAPrivateKey.java(serialVersionUID): Ditto.
	* java/security/interfaces/DSAPublicKey.java(serialVersionUID): Ditto.

From-SVN: r32464
parent 1858863b
2000-03-09 Warren Levy <warrenl@cygnus.com> 2000-03-09 Warren Levy <warrenl@cygnus.com>
* java/security/Key.java(serialVersionUID): Set to 0 for now.
* java/security/interfaces/DSAPrivateKey.java(serialVersionUID): Ditto.
* java/security/interfaces/DSAPublicKey.java(serialVersionUID): Ditto.
2000-03-09 Warren Levy <warrenl@cygnus.com>
* java/security/AlgorithmParameterGeneratorSpi.java: New file. * java/security/AlgorithmParameterGeneratorSpi.java: New file.
* java/security/DigestException.java: New file. * java/security/DigestException.java: New file.
* java/security/GeneralSecurityException.java: New file. * java/security/GeneralSecurityException.java: New file.
......
...@@ -21,7 +21,7 @@ import java.io.Serializable; ...@@ -21,7 +21,7 @@ import java.io.Serializable;
public interface Key extends Serializable public interface Key extends Serializable
{ {
// FIXME: need to set this at some point when serialization is implemented. // FIXME: need to set this at some point when serialization is implemented.
public static final long serialVersionUID; public static final long serialVersionUID = 0;
public String getAlgorithm(); public String getAlgorithm();
public String getFormat(); public String getFormat();
......
...@@ -21,7 +21,8 @@ import java.math.BigInteger; ...@@ -21,7 +21,8 @@ import java.math.BigInteger;
public interface DSAPrivateKey extends DSAKey, PrivateKey public interface DSAPrivateKey extends DSAKey, PrivateKey
{ {
public static final long serialVersionUID; // FIXME: need to set this at some point when serialization is implemented.
public static final long serialVersionUID = 0;
public BigInteger getX(); public BigInteger getX();
} }
...@@ -21,7 +21,8 @@ import java.math.BigInteger; ...@@ -21,7 +21,8 @@ import java.math.BigInteger;
public interface DSAPublicKey extends DSAKey, PublicKey public interface DSAPublicKey extends DSAKey, PublicKey
{ {
public static final long serialVersionUID; // FIXME: need to set this at some point when serialization is implemented.
public static final long serialVersionUID = 0;
public BigInteger getY(); public BigInteger getY();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment