diff options
author | Michael Koch <konqueror@gmx.de> | 2004-10-21 20:38:29 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-10-21 20:38:29 +0000 |
commit | d69201f46e3a00f06da3957ea56501ae9e9ca6e2 (patch) | |
tree | b187a3b6e36cfada2319777171865fcc6e125dda /libjava/javax/crypto/Cipher.java | |
parent | 78fe42c391823366611caab754d28c7aed5609c4 (diff) | |
download | gcc-d69201f46e3a00f06da3957ea56501ae9e9ca6e2.zip gcc-d69201f46e3a00f06da3957ea56501ae9e9ca6e2.tar.gz gcc-d69201f46e3a00f06da3957ea56501ae9e9ca6e2.tar.bz2 |
Cipher.java, [...]: Import cleanup.
2004-10-21 Michael Koch <konqueror@gmx.de>
* javax/crypto/Cipher.java,
javax/crypto/EncryptedPrivateKeyInfo.java,
javax/crypto/ExemptionMechanism.java,
javax/crypto/KeyAgreement.java,
javax/crypto/KeyGenerator.java,
javax/crypto/Mac.java,
javax/crypto/SecretKeyFactory.java,
javax/crypto/SecretKeyFactorySpi.java,
javax/crypto/spec/SecretKeySpec.java:
Import cleanup.
From-SVN: r89398
Diffstat (limited to 'libjava/javax/crypto/Cipher.java')
-rw-r--r-- | libjava/javax/crypto/Cipher.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libjava/javax/crypto/Cipher.java b/libjava/javax/crypto/Cipher.java index af7f2f2..2e2d28f 100644 --- a/libjava/javax/crypto/Cipher.java +++ b/libjava/javax/crypto/Cipher.java @@ -38,6 +38,8 @@ exception statement from your version. */ package javax.crypto; +import gnu.java.security.Engine; + import java.security.AlgorithmParameters; import java.security.InvalidAlgorithmParameterException; import java.security.InvalidKeyException; @@ -50,11 +52,8 @@ import java.security.Security; import java.security.cert.Certificate; import java.security.cert.X509Certificate; import java.security.spec.AlgorithmParameterSpec; - import java.util.StringTokenizer; -import gnu.java.security.Engine; - /** * <p>This class implements a cryptographic cipher for transforming * data.</p> |