+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,
/* 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.
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
/* 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.
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
/* 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.
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
/* 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.
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.
/* 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.
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.