You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2007/04/16 16:35:29 UTC

svn commit: r529267 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/EncryptionSuite.java

Author: kristwaa
Date: Mon Apr 16 07:35:27 2007
New Revision: 529267

URL: http://svn.apache.org/viewvc?view=rev&rev=529267
Log:
The same encryption algorithm was run twice, changed one of the tests to use another variant (CBC -> OFB).

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/EncryptionSuite.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/EncryptionSuite.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/EncryptionSuite.java?view=diff&rev=529267&r1=529266&r2=529267
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/EncryptionSuite.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/suites/EncryptionSuite.java Mon Apr 16 07:35:27 2007
@@ -76,7 +76,7 @@
           suite.addTest(encryptedSuite("DESede/CFB/NoPadding"));
           suite.addTest(encryptedSuite("DES/CBC/NoPadding"));
           suite.addTest(encryptedSuite("Blowfish/CBC/NoPadding"));
-          suite.addTest(encryptedSuite("AES/CBC/NoPadding"));
+          suite.addTest(encryptedSuite("AES/OFB/NoPadding"));
         }
         
         return suite;