Searched refs:RSAPrivateCrtKey (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/rsa/
H A DBrokenRSAPrivateCrtKey.java27 * @summary default RSA KeyFactory can return broken RSAPrivateCrtKey objects
47 RSAPrivateCrtKey privatekey = (RSAPrivateCrtKey) pair.getPrivate();
63 ((RSAPrivateCrtKey) privatekey2).getPublicExponent();
/openjdk7/jdk/src/share/classes/java/security/interfaces/
H A DRSAPrivateCrtKey.java40 public interface RSAPrivateCrtKey extends RSAPrivateKey { interface in inherits:RSAPrivateKey
/openjdk7/jdk/test/sun/security/pkcs12/
H A DBug6415637.java34 import java.security.interfaces.RSAPrivateCrtKey;
60 RSAPrivateCrtKey key = (RSAPrivateCrtKey) e.getPrivateKey();
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyFactory.java50 * . RSAPrivateCrtKey
250 if (key instanceof RSAPrivateCrtKey) {
254 RSAPrivateCrtKey rsaKey = (RSAPrivateCrtKey)key;
267 // catch providers that incorrectly implement RSAPrivateCrtKey
369 if (key instanceof RSAPrivateCrtKey) {
370 RSAPrivateCrtKey crtKey = (RSAPrivateCrtKey)key;
H A DRSACore.java100 if (key instanceof RSAPrivateCrtKey) {
101 return crtCrypt(msg, (RSAPrivateCrtKey)key);
135 private static byte[] crtCrypt(byte[] msg, RSAPrivateCrtKey key)
262 (RSAPrivateCrtKey key) {
H A DRSAPrivateCrtKeyImpl.java52 extends PKCS8Key implements RSAPrivateCrtKey {
/openjdk7/jdk/test/java/security/KeyFactory/
H A DGenerateRSAPrivateCrtKey.java33 import java.security.interfaces.RSAPrivateCrtKey;
55 RSAPrivateCrtKey rsaPriKey =
56 (RSAPrivateCrtKey) kf.generatePrivate(rsaCrtSpec);
86 RSAPrivateCrtKey rsaPriKey2
87 = (RSAPrivateCrtKey) kf.generatePrivate(pkcs8Key);
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyPairGenerator.java120 RSAPrivateCrtKey privateKey = (RSAPrivateCrtKey)kp.getPrivate();
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DTestKeyPairGenerator.java121 RSAPrivateCrtKey privateKey = (RSAPrivateCrtKey)kp.getPrivate();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSAKeyFactory.java77 if (key instanceof RSAPrivateCrtKey) {
78 RSAPrivateCrtKey rsaKey = (RSAPrivateCrtKey)key;
H A DP11KeyStore.java1834 if (key instanceof RSAPrivateCrtKey) {
1837 debug.println("creating RSAPrivateCrtKey attrs");
1840 RSAPrivateCrtKey rsaKey = (RSAPrivateCrtKey)key;
H A DP11Key.java460 implements RSAPrivateCrtKey {
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DKeyStore.java45 import java.security.interfaces.RSAPrivateCrtKey;
126 void setPrivateKey(RSAPrivateCrtKey key)
388 if (key instanceof RSAPrivateCrtKey) {
411 entry.setPrivateKey((RSAPrivateCrtKey) key);
/openjdk7/jdk/test/sun/security/pkcs11/KeyStore/
H A DBasic.java77 private static RSAPrivateCrtKey pk1;
124 pk1 = (RSAPrivateCrtKey)tmpKey;

Completed in 55 milliseconds