< prev index next >

test/com/oracle/security/ucrypto/TestAES.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 7088989 8014374
  27  * @summary Ensure the AES ciphers of OracleUcrypto provider works correctly

  28  */
  29 
  30 import java.io.*;
  31 import java.security.*;
  32 import java.security.spec.*;
  33 import java.util.*;
  34 import javax.crypto.*;
  35 import javax.crypto.spec.*;
  36 
  37 public class TestAES extends UcryptoTest {
  38 
  39     private static final String[] PADDEDCIPHER_ALGOS = {
  40         "AES/ECB/PKCS5Padding",
  41         "AES/CBC/PKCS5Padding",
  42         "AES/CFB128/PKCS5Padding"
  43     };
  44 
  45     private static final String[] CIPHER_ALGOS = {
  46         "AES/ECB/NoPadding",
  47         "AES/CBC/NoPadding",




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 7088989 8014374
  27  * @summary Ensure the AES ciphers of OracleUcrypto provider works correctly
  28  * @key randomness
  29  */
  30 
  31 import java.io.*;
  32 import java.security.*;
  33 import java.security.spec.*;
  34 import java.util.*;
  35 import javax.crypto.*;
  36 import javax.crypto.spec.*;
  37 
  38 public class TestAES extends UcryptoTest {
  39 
  40     private static final String[] PADDEDCIPHER_ALGOS = {
  41         "AES/ECB/PKCS5Padding",
  42         "AES/CBC/PKCS5Padding",
  43         "AES/CFB128/PKCS5Padding"
  44     };
  45 
  46     private static final String[] CIPHER_ALGOS = {
  47         "AES/ECB/NoPadding",
  48         "AES/CBC/NoPadding",


< prev index next >