jdk/test/javax/crypto/CryptoPermission/RSANoLimit.java
author prr
Thu, 18 Dec 2014 10:45:45 -0800
changeset 29908 83e2c403fefd
parent 5506 202f599c92aa
permissions -rw-r--r--
8067050: Better font consistency checking Reviewed-by: bae, srl, mschoene
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 6353783
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Ensure that the 2048 bit RSA keysize limit has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * lifted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * @author Valerie Peng
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.math.BigInteger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.spec.RSAPublicKeySpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.security.interfaces.RSAPublicKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.crypto.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import javax.crypto.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public class RSANoLimit {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static final byte[] MODULUS4096 = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
(byte)0x70, (byte)0x80, (byte)0x7C, (byte)0x77, (byte)0x16, (byte)0xD0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
(byte)0x11, (byte)0xF7, (byte)0xA1, (byte)0xAE, (byte)0x3D, (byte)0xEC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
(byte)0x75, (byte)0xC7, (byte)0xC0, (byte)0x65, (byte)0x8F, (byte)0x0D,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
(byte)0x16, (byte)0x80, (byte)0xDE, (byte)0x44, (byte)0xB8, (byte)0x32,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
(byte)0xA5, (byte)0x33, (byte)0xA1, (byte)0x6A, (byte)0x21, (byte)0xF1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
(byte)0x84, (byte)0xFF, (byte)0xD9, (byte)0x2B, (byte)0x24, (byte)0x53,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
(byte)0x6B, (byte)0x23, (byte)0x55, (byte)0xA9, (byte)0xB4, (byte)0x05,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
(byte)0x93, (byte)0x5A, (byte)0x0E, (byte)0xA5, (byte)0x51, (byte)0xBE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
(byte)0x50, (byte)0x90, (byte)0xBD, (byte)0x88, (byte)0x07, (byte)0x6E,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
(byte)0x07, (byte)0x2E, (byte)0xFD, (byte)0xCE, (byte)0x32, (byte)0x0C,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
(byte)0x48, (byte)0x03, (byte)0x26, (byte)0x95, (byte)0x64, (byte)0x92,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
(byte)0x8D, (byte)0xB8, (byte)0x09, (byte)0x31, (byte)0xFB, (byte)0x80,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
(byte)0x32, (byte)0x20, (byte)0x38, (byte)0x72, (byte)0x7A, (byte)0x5F,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
(byte)0xF9, (byte)0x5A, (byte)0x73, (byte)0x84, (byte)0x5A, (byte)0xDA,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
(byte)0x4C, (byte)0xB2, (byte)0x6C, (byte)0x9C, (byte)0x18, (byte)0xA2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
(byte)0xC8, (byte)0xC5, (byte)0x87, (byte)0x62, (byte)0xA1, (byte)0x59,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
(byte)0xEA, (byte)0x04, (byte)0xD8, (byte)0xB7, (byte)0xE4, (byte)0xB6,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
(byte)0xA1, (byte)0xD1, (byte)0xDA, (byte)0xB8, (byte)0x61, (byte)0x24,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
(byte)0xC6, (byte)0xD4, (byte)0x20, (byte)0xBC, (byte)0x01, (byte)0x32,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
(byte)0xAB, (byte)0xDF, (byte)0x30, (byte)0x12, (byte)0xE1, (byte)0xB0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
(byte)0x80, (byte)0xCB, (byte)0x0A, (byte)0x25, (byte)0xAB, (byte)0xC6,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
(byte)0xEB, (byte)0xE2, (byte)0x3B, (byte)0x77, (byte)0xAD, (byte)0x90,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
(byte)0x16, (byte)0xC8, (byte)0xCC, (byte)0xF9, (byte)0x94, (byte)0xBB,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
(byte)0xF0, (byte)0xE7, (byte)0x77, (byte)0xA9, (byte)0x4E, (byte)0x7D,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
(byte)0xFC, (byte)0x76, (byte)0x11, (byte)0xA1, (byte)0xE8, (byte)0x22,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
(byte)0xD1, (byte)0xC5, (byte)0xAA, (byte)0x51, (byte)0x2B, (byte)0xBD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
(byte)0x0B, (byte)0x2E, (byte)0x3A, (byte)0x97, (byte)0xAC, (byte)0x19,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
(byte)0x4B, (byte)0xA2, (byte)0x01, (byte)0x89, (byte)0x1A, (byte)0x9E,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
(byte)0x2C, (byte)0x0C, (byte)0x7E, (byte)0x83, (byte)0xAD, (byte)0xCB,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
(byte)0xED, (byte)0x5B, (byte)0x67, (byte)0x67, (byte)0x9E, (byte)0x85,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
(byte)0x1E, (byte)0x68, (byte)0xB6, (byte)0x5D, (byte)0xB9, (byte)0xD6,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
(byte)0xBD, (byte)0x80, (byte)0x92, (byte)0x7A, (byte)0x54, (byte)0xB3,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
(byte)0x5F, (byte)0x2E, (byte)0x8C, (byte)0x53, (byte)0x83, (byte)0xBD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
(byte)0xF9, (byte)0x0D, (byte)0x65, (byte)0x0B, (byte)0xCD, (byte)0x22,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
(byte)0x21, (byte)0x51, (byte)0xB3, (byte)0x8F, (byte)0x19, (byte)0x53,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
(byte)0x6F, (byte)0x62, (byte)0x88, (byte)0x09, (byte)0xB0, (byte)0x8F,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
(byte)0xB5, (byte)0xDA, (byte)0x6E, (byte)0x2A, (byte)0x2F, (byte)0xF9,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
(byte)0xA6, (byte)0x65, (byte)0x59, (byte)0x17, (byte)0xEC, (byte)0x05,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
(byte)0x6A, (byte)0xA4, (byte)0xC6, (byte)0x21, (byte)0x3F, (byte)0x81,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
(byte)0xB9, (byte)0xB0, (byte)0x72, (byte)0xBB, (byte)0x84, (byte)0x79,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
(byte)0xEC, (byte)0x3E, (byte)0xA5, (byte)0x25, (byte)0x37, (byte)0x9D,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
(byte)0xC3, (byte)0x2E, (byte)0x79, (byte)0x69, (byte)0xE6, (byte)0x80,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
(byte)0x5E, (byte)0x1E, (byte)0x03, (byte)0x8D, (byte)0xD9, (byte)0x62,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
(byte)0xCC, (byte)0x6C, (byte)0x7C, (byte)0x27, (byte)0x52, (byte)0xE5,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
(byte)0xC2, (byte)0x24, (byte)0xBF, (byte)0x95, (byte)0xCC, (byte)0x2E,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
(byte)0xFA, (byte)0x9C, (byte)0x88, (byte)0xAB, (byte)0x48, (byte)0x43,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
(byte)0xDB, (byte)0x36, (byte)0xFD, (byte)0x41, (byte)0x3C, (byte)0x71,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
(byte)0xE4, (byte)0x5C, (byte)0x30, (byte)0xE0, (byte)0x00, (byte)0x24,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
(byte)0x18, (byte)0xC2, (byte)0xD1, (byte)0x11, (byte)0x79, (byte)0xCE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
(byte)0xD8, (byte)0x19, (byte)0xE5, (byte)0xA6, (byte)0xD3, (byte)0xFE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
(byte)0x79, (byte)0x5F, (byte)0xA8, (byte)0xC3, (byte)0x92, (byte)0xBB,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
(byte)0x63, (byte)0xD2, (byte)0x3D, (byte)0x17, (byte)0x6D, (byte)0xFB,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
(byte)0x39, (byte)0xD2, (byte)0x32, (byte)0x5F, (byte)0xE1, (byte)0x54,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
(byte)0xD6, (byte)0x72, (byte)0xDB, (byte)0xA8, (byte)0xA3, (byte)0xFE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
(byte)0x49, (byte)0x98, (byte)0xAA, (byte)0x55, (byte)0x67, (byte)0x1C,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
(byte)0xAB, (byte)0x83, (byte)0xA2, (byte)0x0F, (byte)0x03, (byte)0x52,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
(byte)0x3D, (byte)0x15, (byte)0xAF, (byte)0xDD, (byte)0x8A, (byte)0xAB,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
(byte)0x35, (byte)0x82, (byte)0xEF, (byte)0x6D, (byte)0xBD, (byte)0x8E,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
(byte)0xF3, (byte)0xB5, (byte)0x5E, (byte)0xD9, (byte)0xC9, (byte)0x45,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
(byte)0x99, (byte)0x46, (byte)0x4A, (byte)0xA5, (byte)0x28, (byte)0xAF,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
(byte)0x4E, (byte)0x6B, (byte)0xDE, (byte)0x9F, (byte)0xD7, (byte)0x20,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
(byte)0x7D, (byte)0x81, (byte)0xDB, (byte)0x34, (byte)0x25, (byte)0xDF,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
(byte)0x08, (byte)0xCA, (byte)0x06, (byte)0x77, (byte)0xC4, (byte)0xBC,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
(byte)0x69, (byte)0x4D, (byte)0x93, (byte)0x05, (byte)0x9C, (byte)0x8B,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
(byte)0xDB, (byte)0x84, (byte)0xB0, (byte)0xE7, (byte)0xBA, (byte)0xD2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
(byte)0xEA, (byte)0x8D, (byte)0x64, (byte)0xF6, (byte)0xE3, (byte)0x96,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
(byte)0x2F, (byte)0x88, (byte)0x65, (byte)0x92, (byte)0x54, (byte)0x50,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
(byte)0xF6, (byte)0x33, (byte)0x15, (byte)0x2A, (byte)0xBF, (byte)0xB0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
(byte)0xD4, (byte)0xD5, (byte)0x0C, (byte)0xCA, (byte)0x78, (byte)0x95,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
(byte)0xF4, (byte)0xC1, (byte)0x11, (byte)0xA7, (byte)0x52, (byte)0xA1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
(byte)0xC9, (byte)0x49, (byte)0x63, (byte)0x41, (byte)0xD3, (byte)0x3E,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
(byte)0xA0, (byte)0xBE, (byte)0x7F, (byte)0x2F, (byte)0x17, (byte)0x2E,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
(byte)0xFD, (byte)0xA1, (byte)0x55, (byte)0x95, (byte)0x7F, (byte)0x24,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
(byte)0x90, (byte)0x68, (byte)0x4C, (byte)0x05, (byte)0xFD, (byte)0x52,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
(byte)0x9B, (byte)0x04, (byte)0x59, (byte)0xA0, (byte)0xEF, (byte)0x69,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
(byte)0x65, (byte)0x68, (byte)0x58, (byte)0x0F, (byte)0xF5, (byte)0x04,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
(byte)0x0E, (byte)0x23, (byte)0xEE, (byte)0xFA, (byte)0x04, (byte)0x80,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
(byte)0x8C, (byte)0x24, (byte)0xE5, (byte)0xB0, (byte)0x2B, (byte)0xA6,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
(byte)0x35, (byte)0x60, (byte)0xFA, (byte)0x08, (byte)0xD4, (byte)0x13,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
(byte)0x3E, (byte)0xE0, (byte)0xB0, (byte)0x63, (byte)0x1D, (byte)0xDB,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
(byte)0x1F, (byte)0x8C, (byte)0x2F, (byte)0xD0, (byte)0x47, (byte)0x8F,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
(byte)0x73, (byte)0x91, (byte)0xD7, (byte)0xDC, (byte)0x8A, (byte)0xE8,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
(byte)0x2D, (byte)0xF2, (byte)0x22, (byte)0x9C, (byte)0xEE, (byte)0x23,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
(byte)0xFA, (byte)0x4C, (byte)0xC1, (byte)0x86, (byte)0xE0, (byte)0x15,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
(byte)0xC7, (byte)0x52, (byte)0xFE, (byte)0x81, (byte)0xD6, (byte)0x27,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
(byte)0x6C, (byte)0x4F
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    private static final byte[] PUB4096 = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        (byte)0x01, (byte)0x00, (byte)0x01
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        boolean result = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        Provider p = Security.getProvider("SunJCE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        System.out.println("Testing provider " + p.getName() + "...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        // Test#1: make sure Cipher.getMaxAllowedKeyLength returns the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        // correct value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        if (Cipher.getMaxAllowedKeyLength("RSA") != Integer.MAX_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            System.out.println("Test#1 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        // Test#2: try initializing RSA cipher with 4096 key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        String algo = "RSA";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        RSAPublicKeySpec pubKeySpec = new RSAPublicKeySpec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            (new BigInteger(MODULUS4096), new BigInteger(PUB4096));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        KeyFactory kf = KeyFactory.getInstance(algo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        RSAPublicKey pubKey = (RSAPublicKey) kf.generatePublic(pubKeySpec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        Cipher c = Cipher.getInstance(algo + "/ECB/NoPadding", p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            c.init(Cipher.ENCRYPT_MODE, pubKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        } catch (InvalidKeyException ike) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            System.out.println("Test#2 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            ike.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        if (result) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            System.out.println("All tests passed!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            throw new Exception("One or more test failed!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
}