< prev index next >

test/sun/security/pkcs11/Cipher/TestRawRSACipher.java

Print this page




  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 6994008
  27  * @summary basic test for RSA/ECB/NoPadding cipher
  28  * @author Valerie Peng
  29  * @library ..

  30  */
  31 
  32 import javax.crypto.*;
  33 import java.io.*;
  34 import javax.crypto.spec.SecretKeySpec;
  35 import java.security.*;
  36 import java.util.*;
  37 
  38 public class TestRawRSACipher extends PKCS11Test {
  39 
  40     public void main(Provider p) throws Exception {
  41         try {
  42             Cipher.getInstance("RSA/ECB/NoPadding", p);
  43         } catch (GeneralSecurityException e) {
  44             System.out.println("Not supported by provider, skipping");
  45             return;
  46         }
  47 
  48         final int KEY_LEN = 1024;
  49         KeyPairGenerator kpGen = KeyPairGenerator.getInstance("RSA", p);




  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 6994008
  27  * @summary basic test for RSA/ECB/NoPadding cipher
  28  * @author Valerie Peng
  29  * @library ..
  30  * @key randomness
  31  */
  32 
  33 import javax.crypto.*;
  34 import java.io.*;
  35 import javax.crypto.spec.SecretKeySpec;
  36 import java.security.*;
  37 import java.util.*;
  38 
  39 public class TestRawRSACipher extends PKCS11Test {
  40 
  41     public void main(Provider p) throws Exception {
  42         try {
  43             Cipher.getInstance("RSA/ECB/NoPadding", p);
  44         } catch (GeneralSecurityException e) {
  45             System.out.println("Not supported by provider, skipping");
  46             return;
  47         }
  48 
  49         final int KEY_LEN = 1024;
  50         KeyPairGenerator kpGen = KeyPairGenerator.getInstance("RSA", p);


< prev index next >