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
This commit is contained in:
Warren Levy 2000-03-10 05:10:40 +00:00 committed by Warren Levy
parent 1858863bd5
commit ea7f51a4af
4 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,9 @@
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.

View File

@ -21,7 +21,7 @@ import java.io.Serializable;
public interface Key extends Serializable
{
// 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 getFormat();

View File

@ -21,7 +21,8 @@ import java.math.BigInteger;
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();
}

View File

@ -21,7 +21,8 @@ import java.math.BigInteger;
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();
}