This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: java.security.interfaces merged


Hi list,


I just commited the attached patch to merge java.security.interfaces 
with GNU classpath again.


Michael


2004-05-04  Dalibor Topic  <robilad@kaffe.org>

	* java/security/interfaces/DSAKeyPairGenerator.java,
	java/security/interfaces/DSAPrivateKey.java,
	java/security/interfaces/DSAPublicKey.java,
	java/security/interfaces/RSAPrivateKey.java,
	java/security/interfaces/RSAPublicKey.java:
	Cleaned up imports.

Index: java/security/interfaces/DSAKeyPairGenerator.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/interfaces/DSAKeyPairGenerator.java,v
retrieving revision 1.3
diff -u -r1.3 DSAKeyPairGenerator.java
--- java/security/interfaces/DSAKeyPairGenerator.java	11 Oct 2003 19:00:07 -0000	1.3
+++ java/security/interfaces/DSAKeyPairGenerator.java	4 May 2004 21:40:02 -0000
@@ -1,5 +1,5 @@
 /* DSAKeyPairGenerator.java -- Initialize a DSA key generator
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.SecureRandom;
 import java.security.InvalidParameterException;
+import java.security.SecureRandom;
 
 /**
  * This interface contains methods for intializing a Digital Signature
Index: java/security/interfaces/DSAPrivateKey.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/interfaces/DSAPrivateKey.java,v
retrieving revision 1.7
diff -u -r1.7 DSAPrivateKey.java
--- java/security/interfaces/DSAPrivateKey.java	11 Oct 2003 19:00:07 -0000	1.7
+++ java/security/interfaces/DSAPrivateKey.java	4 May 2004 21:40:02 -0000
@@ -1,5 +1,5 @@
 /* DSAPublicKey.java -- A Digital Signature Algorithm private key
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.PrivateKey;
 import java.math.BigInteger;
+import java.security.PrivateKey;
 
 /**
  * This interface models a Digital Signature Algorithm (DSA) private key
Index: java/security/interfaces/DSAPublicKey.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/interfaces/DSAPublicKey.java,v
retrieving revision 1.7
diff -u -r1.7 DSAPublicKey.java
--- java/security/interfaces/DSAPublicKey.java	11 Oct 2003 19:00:07 -0000	1.7
+++ java/security/interfaces/DSAPublicKey.java	4 May 2004 21:40:02 -0000
@@ -1,5 +1,5 @@
 /* DSAPublicKey.java -- A Digital Signature Algorithm public key
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.PublicKey;
 import java.math.BigInteger;
+import java.security.PublicKey;
 
 /**
  * This interface models a Digital Signature Algorithm (DSA) public key
Index: java/security/interfaces/RSAPrivateKey.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/interfaces/RSAPrivateKey.java,v
retrieving revision 1.4
diff -u -r1.4 RSAPrivateKey.java
--- java/security/interfaces/RSAPrivateKey.java	11 Oct 2003 19:00:07 -0000	1.4
+++ java/security/interfaces/RSAPrivateKey.java	4 May 2004 21:40:02 -0000
@@ -1,5 +1,5 @@
 /* RSAPrivateKey.java -- An RSA private key
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.PrivateKey;
 import java.math.BigInteger;
+import java.security.PrivateKey;
 
 /**
  * This interface provides access to information about an RSA private key.
Index: java/security/interfaces/RSAPublicKey.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/interfaces/RSAPublicKey.java,v
retrieving revision 1.4
diff -u -r1.4 RSAPublicKey.java
--- java/security/interfaces/RSAPublicKey.java	11 Oct 2003 19:00:07 -0000	1.4
+++ java/security/interfaces/RSAPublicKey.java	4 May 2004 21:40:02 -0000
@@ -1,5 +1,5 @@
 /* RSAPublicKey.java -- An RSA public key
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.PublicKey;
 import java.math.BigInteger;
+import java.security.PublicKey;
 
 /**
  * This interface provides access to information about an RSA public key.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]