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/KeyAgreement.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/KeyAgreement.java')
-rw-r--r-- | libjava/javax/crypto/KeyAgreement.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libjava/javax/crypto/KeyAgreement.java b/libjava/javax/crypto/KeyAgreement.java index 6f6ed34..884e0f9 100644 --- a/libjava/javax/crypto/KeyAgreement.java +++ b/libjava/javax/crypto/KeyAgreement.java @@ -38,8 +38,9 @@ exception statement from your version. */ package javax.crypto; -import java.lang.reflect.InvocationTargetException; +import gnu.java.security.Engine; +import java.lang.reflect.InvocationTargetException; import java.security.InvalidAlgorithmParameterException; import java.security.InvalidKeyException; import java.security.Key; @@ -50,8 +51,6 @@ import java.security.SecureRandom; import java.security.Security; import java.security.spec.AlgorithmParameterSpec; -import gnu.java.security.Engine; - /** * Key agreement is a method in which two or more parties may agree on a * secret key for symmetric cryptography or message authentication |