diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-04 21:40:42 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-04 21:40:42 +0000 |
commit | 6fada63715e720039e87318d593389117aa715ab (patch) | |
tree | c9083ec7e1e8826b4e06a4514c90cb3f6649241d /libjava/java/security/interfaces/RSAPrivateKey.java | |
parent | a221385cec60e1ba526d292898aeb99953891407 (diff) | |
download | ppe42-gcc-6fada63715e720039e87318d593389117aa715ab.tar.gz ppe42-gcc-6fada63715e720039e87318d593389117aa715ab.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81490 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/security/interfaces/RSAPrivateKey.java')
-rw-r--r-- | libjava/java/security/interfaces/RSAPrivateKey.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/security/interfaces/RSAPrivateKey.java b/libjava/java/security/interfaces/RSAPrivateKey.java index 34b9798b627..d287d67327a 100644 --- a/libjava/java/security/interfaces/RSAPrivateKey.java +++ b/libjava/java/security/interfaces/RSAPrivateKey.java @@ -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. |