Searched refs:RSAPrivateKey (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAKeyPair.java35 private final RSAPrivateKey privateKey;
44 privateKey = new RSAPrivateKey(hCryptProv, hCryptKey, keyLength);
48 public RSAPrivateKey getPrivate() {
H A DRSAPrivateKey.java36 class RSAPrivateKey extends Key implements PrivateKey class in inherits:Key,PrivateKey
39 * Construct an RSAPrivateKey object.
41 RSAPrivateKey(long hCryptProv, long hCryptKey, int keyLength) method in class:RSAPrivateKey
63 return "RSAPrivateKey [size=" + keyLength + " bits, type=" +
H A DRSASignature.java289 // This signature accepts only RSAPrivateKey
290 if ((key instanceof sun.security.mscapi.RSAPrivateKey) == false) {
293 privateKey = (sun.security.mscapi.RSAPrivateKey) key;
H A DKeyStore.java821 KeyEntry entry = new KeyEntry(alias, new RSAPrivateKey(hCryptProv,
928 private native RSAPrivateKey storePrivateKey(byte[] keyBlob,
/openjdk7/jdk/src/share/classes/java/security/interfaces/
H A DRSAPrivateKey.java39 public interface RSAPrivateKey extends java.security.PrivateKey, RSAKey interface in inherits:java.security.PrivateKey,RSAKey
H A DRSAMultiPrimePrivateCrtKey.java41 * @see RSAPrivateKey
47 public interface RSAMultiPrimePrivateCrtKey extends RSAPrivateKey {
H A DRSAPrivateCrtKey.java37 * @see RSAPrivateKey
40 public interface RSAPrivateCrtKey extends RSAPrivateKey {
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyFactory.java49 * . RSAPrivateKey
156 // If a RSAPrivateKey/RSAPublicKey, make sure the
270 } else if (key instanceof RSAPrivateKey) {
274 RSAPrivateKey rsaKey = (RSAPrivateKey)key;
281 // catch providers that incorrectly implement RSAPrivateKey
365 } else if (key instanceof RSAPrivateKey) {
386 RSAPrivateKey rsaKey = (RSAPrivateKey)key;
H A DRSAPrivateKeyImpl.java50 public final class RSAPrivateKeyImpl extends PKCS8Key implements RSAPrivateKey {
H A DRSASignature.java68 private RSAPrivateKey privateKey;
107 RSAPrivateKey rsaKey =
108 (RSAPrivateKey)RSAKeyFactory.toRSAKey(privateKey);
H A DRSAPrivateCrtKeyImpl.java73 public static RSAPrivateKey newKey(byte[] encoded)
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyFactory.java110 RSAPrivateKey rsaKey = (RSAPrivateKey)key;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSAKeyFactory.java89 } else if (key instanceof RSAPrivateKey) {
90 RSAPrivateKey rsaKey = (RSAPrivateKey)key;
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/ClientHandshaker/
H A DRSAExport.java540 RSAPrivateKey priKey =
541 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLContextImpl/
H A DMD2InTrustAnchor.java243 RSAPrivateKey priKey =
244 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
H A DTrustTrustedCert.java235 RSAPrivateKey priKey =
236 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/
H A DBasicConstraints.java411 RSAPrivateKey priKey = (RSAPrivateKey)kf.generatePrivate(priKeySpec);
H A DSelfIssuedCert.java249 RSAPrivateKey priKey =
250 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
H A DPKIXExtendedTM.java738 RSAPrivateKey priKey =
739 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
H A DSunX509ExtendedTM.java739 RSAPrivateKey priKey =
740 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/TLSv12/
H A DDisabledShortRSAKeys.java249 RSAPrivateKey priKey =
250 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
H A DShortRSAKey512.java234 RSAPrivateKey priKey =
235 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DRSACipher.java108 private RSAPrivateKey privateKey;
264 } else { // must be RSAPrivateKey per check in toRSAKey
266 privateKey = (RSAPrivateKey)key;
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DDNSIdentities.java866 RSAPrivateKey priKey =
867 (RSAPrivateKey)kf.generatePrivate(priKeySpec);
H A DIPAddressDNSIdentities.java875 RSAPrivateKey priKey =
876 (RSAPrivateKey)kf.generatePrivate(priKeySpec);

Completed in 84 milliseconds

12