Searched refs:RSAPrivateCrtKeySpec (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/spec/
H A DRSAPrivateCrtKeySpec.java46 public class RSAPrivateCrtKeySpec extends RSAPrivateKeySpec { class in inherits:RSAPrivateKeySpec
58 * Creates a new <code>RSAPrivateCrtKeySpec</code>
73 public RSAPrivateCrtKeySpec(BigInteger modulus, method in class:RSAPrivateCrtKeySpec
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/rsa/
H A DBrokenRSAPrivateCrtKey.java49 RSAPrivateCrtKeySpec spec =
50 new RSAPrivateCrtKeySpec(privatekey.getModulus(),
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyFactory.java52 * . RSAPrivateCrtKeySpec
68 RSAPrivateCrtKeySpec.class;
317 } else if (keySpec instanceof RSAPrivateCrtKeySpec) {
318 RSAPrivateCrtKeySpec rsaSpec = (RSAPrivateCrtKeySpec)keySpec;
371 return (T) new RSAPrivateCrtKeySpec(
383 ("RSAPrivateCrtKeySpec can only be used with CRT keys");
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSAKeyFactory.java158 if (keySpec instanceof RSAPrivateCrtKeySpec) {
159 RSAPrivateCrtKeySpec rs = (RSAPrivateCrtKeySpec)keySpec;
285 if (RSAPrivateCrtKeySpec.class.isAssignableFrom(keySpec)) {
298 KeySpec spec = new RSAPrivateCrtKeySpec(
/openjdk7/jdk/test/java/security/KeyFactory/
H A DGenerateRSAPrivateCrtKey.java28 * java.security.spec.RSAPrivateCrtKeySpec passes
35 import java.security.spec.RSAPrivateCrtKeySpec;
43 RSAPrivateCrtKeySpec rsaCrtSpec =
44 new RSAPrivateCrtKeySpec(new BigInteger(1, modulus),
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyFactory.java96 KeySpec rsaSpec = kf.getKeySpec(key, RSAPrivateCrtKeySpec.class);
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DTestKeyFactory.java97 KeySpec rsaSpec = kf.getKeySpec(key, RSAPrivateCrtKeySpec.class);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java108 KeySpec privSpec = new RSAPrivateCrtKeySpec(n, e, d, p, q, pe, qe, coeff);
/openjdk7/jdk/test/com/oracle/security/ucrypto/
H A DTestRSA.java179 (new RSAPrivateCrtKeySpec

Completed in 37 milliseconds