You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by am...@apache.org on 2003/09/18 00:16:12 UTC

cvs commit: xml-security/src_unitTests/org/apache/xml/security/test/encryption XMLCipherTester.java

amattheu    2003/09/17 15:16:12

  Modified:    src_unitTests/org/apache/xml/security/test/encryption
                        XMLCipherTester.java
  Log:
  Cleaned up imports.
  
  Revision  Changes    Path
  1.2       +3 -6      xml-security/src_unitTests/org/apache/xml/security/test/encryption/XMLCipherTester.java
  
  Index: XMLCipherTester.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/encryption/XMLCipherTester.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLCipherTester.java	21 Jul 2003 11:30:04 -0000	1.1
  +++ XMLCipherTester.java	17 Sep 2003 22:16:12 -0000	1.2
  @@ -62,27 +62,24 @@
   import java.io.File;
   import java.io.IOException;
   import java.security.Key;
  -import java.security.SecureRandom;
  -import javax.crypto.KeyGenerator;
  +
   import javax.crypto.SecretKey;
   import javax.crypto.SecretKeyFactory;
   import javax.crypto.spec.DESedeKeySpec;
   import javax.crypto.spec.SecretKeySpec;
   import javax.xml.parsers.DocumentBuilder;
   import javax.xml.parsers.DocumentBuilderFactory;
  +
   import junit.framework.Assert;
   import junit.framework.TestCase;
  -import org.apache.xml.security.encryption.EncryptedData;
  +
   import org.apache.xml.security.encryption.XMLCipher;
   import org.apache.xml.serialize.DOMSerializer;
   import org.apache.xml.serialize.Method;
   import org.apache.xml.serialize.OutputFormat;
   import org.apache.xml.serialize.XMLSerializer;
   import org.w3c.dom.Document;
  -import org.w3c.dom.DocumentFragment;
   import org.w3c.dom.Element;
  -import org.w3c.dom.Node;
  -import org.w3c.dom.NodeList;
   
   
   /**