]> gcc.gnu.org Git - gcc.git/commitdiff
DSAKeyPairGenerator.java, [...]: Cleaned up imports.
authorDalibor Topic <robilad@kaffe.org>
Tue, 4 May 2004 21:40:42 +0000 (21:40 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Tue, 4 May 2004 21:40:42 +0000 (21:40 +0000)
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.

From-SVN: r81490

libjava/ChangeLog
libjava/java/security/interfaces/DSAKeyPairGenerator.java
libjava/java/security/interfaces/DSAPrivateKey.java
libjava/java/security/interfaces/DSAPublicKey.java
libjava/java/security/interfaces/RSAPrivateKey.java
libjava/java/security/interfaces/RSAPublicKey.java

index baf4d6ac74355cf0c039d22da6bcfb3157341822..88441aa135a5b8dd376fc360d5929c8c47439467 100644 (file)
@@ -1,3 +1,12 @@
+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.
+
 2004-05-04  Michael Koch  <konqueror@gmx.de>
 
        * java/nio/ByteBuffer.java,
index dc957a31881200e0ed99d400ea3326b8be6cf945..59f3834cafab92540b3c7502cd76af899368ebed 100644 (file)
@@ -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 @@ exception statement from your version. */
 
 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 201d54f2f3074f9a0fcb425c707c4413cc5cad0a..4e6f13ddbe5275c8a31092241331875fc1637b07 100644 (file)
@@ -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 @@ exception statement from your version. */
 
 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 74f24482dcfe96094e74b5f4fc8b35dd0c4945b5..aec1c606dcdeaf9b72746da9ac27ee1a1c981621 100644 (file)
@@ -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 @@ exception statement from your version. */
 
 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 34b9798b62709f79d3fe6874462bcf8b3effa08f..d287d67327ad462e790d5b251b5706cc1f1cdae2 100644 (file)
@@ -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 @@ exception statement from your version. */
 
 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 b9b532cd9b06e5bdde00f4619f66d86b7872882e..22d64b1bb7ad122ad1030ed64f5f4c9d6cbe7d99 100644 (file)
@@ -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 @@ exception statement from your version. */
 
 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.
This page took 0.080636 seconds and 5 git commands to generate.