DSAKeyPairGenerator.java, [...]: Cleaned up imports.

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
This commit is contained in:
Dalibor Topic 2004-05-04 21:40:42 +00:00 committed by Michael Koch
parent 933522fbc3
commit aff9d141f6
6 changed files with 19 additions and 10 deletions

View 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

View 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

View 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

View 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.

View 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.