aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/crypto/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/crypto/interfaces')
-rw-r--r--libjava/javax/crypto/interfaces/DHPrivateKey.java3
-rw-r--r--libjava/javax/crypto/interfaces/DHPublicKey.java3
-rw-r--r--libjava/javax/crypto/interfaces/PBEKey.java3
3 files changed, 3 insertions, 6 deletions
diff --git a/libjava/javax/crypto/interfaces/DHPrivateKey.java b/libjava/javax/crypto/interfaces/DHPrivateKey.java
index 63b9c15..7f9ea39 100644
--- a/libjava/javax/crypto/interfaces/DHPrivateKey.java
+++ b/libjava/javax/crypto/interfaces/DHPrivateKey.java
@@ -57,9 +57,8 @@ import java.security.PrivateKey;
*/
public interface DHPrivateKey extends DHKey, PrivateKey
{
-
/** Compatible with JDK1.4. */
- static final long serialVersionUID = 2211791113380396553L;
+ long serialVersionUID = 2211791113380396553L;
/**
* Returns the private value <i>x</i>.
diff --git a/libjava/javax/crypto/interfaces/DHPublicKey.java b/libjava/javax/crypto/interfaces/DHPublicKey.java
index 5e0b35b..1fcb814 100644
--- a/libjava/javax/crypto/interfaces/DHPublicKey.java
+++ b/libjava/javax/crypto/interfaces/DHPublicKey.java
@@ -56,9 +56,8 @@ import java.security.PublicKey;
*/
public interface DHPublicKey extends DHKey, PublicKey
{
-
/** Compatible with JDK1.4. */
- static final long serialVersionUID = -6628103563352519193L;
+ long serialVersionUID = -6628103563352519193L;
/**
* Get the public value <i>y</i>.
diff --git a/libjava/javax/crypto/interfaces/PBEKey.java b/libjava/javax/crypto/interfaces/PBEKey.java
index 5334918..30d2532 100644
--- a/libjava/javax/crypto/interfaces/PBEKey.java
+++ b/libjava/javax/crypto/interfaces/PBEKey.java
@@ -51,9 +51,8 @@ import javax.crypto.SecretKey;
*/
public interface PBEKey extends SecretKey
{
-
/** Compatible with JDK1.4. */
- static final long serialVersionUID = -1430015993304333921L;
+ long serialVersionUID = -1430015993304333921L;
/**
* Retruns the iteration count, or 0 if not specified.