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:
parent
1858863bd5
commit
ea7f51a4af
@ -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.
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user