summaryrefslogtreecommitdiffstats
path: root/libjava/javax/crypto
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-22 17:14:29 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-22 17:14:29 +0000
commitd5a51bb3e23d43b2a4dfc4a0f4b1ce8b89aa9d46 (patch)
tree81b31b0486891970a421212090c68947039d0701 /libjava/javax/crypto
parentdac49aa5c53ad15cdab5f898160dbe72708c98d3 (diff)
downloadppe42-gcc-d5a51bb3e23d43b2a4dfc4a0f4b1ce8b89aa9d46.tar.gz
ppe42-gcc-d5a51bb3e23d43b2a4dfc4a0f4b1ce8b89aa9d46.zip
2004-10-22 Michael Koch <konqueror@gmx.de>
* java/lang/Math.java * java/lang/StackTraceElement.java * java/nio/Buffer.java * java/nio/ByteBuffer.java * java/nio/CharBuffer.java * java/nio/DoubleBuffer.java * java/nio/FloatBuffer.java * java/nio/IntBuffer.java * java/nio/LongBuffer.java * java/nio/ShortBuffer.java * java/nio/charset/Charset.java * java/rmi/server/RMIClassLoader.java * java/rmi/server/RMISocketFactory.java * java/security/Policy.java * java/text/ChoiceFormat.java * java/text/CollationElementIterator.java * java/text/DateFormat.java * java/text/DecimalFormat.java * java/text/DecimalFormatSymbols.java * java/text/MessageFormat.java * java/text/NumberFormat.java * java/text/RuleBasedCollator.java * java/text/SimpleDateFormat.java * java/util/BitSet.java * java/util/Calendar.java * java/util/Collections.java * java/util/IdentityHashMap.java * java/util/Locale.java * java/util/TreeMap.java * java/util/logging/LogRecord.java * java/util/logging/XMLFormatter.java * java/util/prefs/AbstractPreferences.java * java/util/prefs/Preferences.java * javax/crypto/interfaces/DHPrivateKey.java * javax/crypto/interfaces/DHPublicKey.java * javax/crypto/interfaces/PBEKey.java * javax/net/ssl/HandshakeCompletedEvent.java * javax/security/auth/Subject.java git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89454 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/javax/crypto')
-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 63b9c15c416..7f9ea391f2e 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 5e0b35bf008..1fcb8144a3a 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 53349189849..30d25323f37 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.
OpenPOWER on IntegriCloud