/openjdk7/jdk/src/windows/classes/sun/security/mscapi/ |
H A D | RSAKeyPair.java | 37 private final RSAPublicKey publicKey; 45 publicKey = new RSAPublicKey(hCryptProv, hCryptKey, keyLength); 52 public RSAPublicKey getPublic() {
|
H A D | RSAPublicKey.java | 42 class RSAPublicKey extends Key implements java.security.interfaces.RSAPublicKey class in inherits:Key,java.security.interfaces.RSAPublicKey 50 * Construct an RSAPublicKey object. 52 RSAPublicKey(long hCryptProv, long hCryptKey, int keyLength) method in class:RSAPublicKey 79 sb.append("RSAPublicKey [size=").append(keyLength)
|
H A D | RSASignature.java | 240 // This signature accepts only RSAPublicKey 241 if ((key instanceof java.security.interfaces.RSAPublicKey) == false) { 245 java.security.interfaces.RSAPublicKey rsaKey = 246 (java.security.interfaces.RSAPublicKey) key; 248 if ((key instanceof sun.security.mscapi.RSAPublicKey) == false) { 279 publicKey = (sun.security.mscapi.RSAPublicKey) key; 524 static native RSAPublicKey importPublicKey(byte[] keyBlob, int keySize)
|
H A D | RSACipher.java | 197 if (key instanceof java.security.interfaces.RSAPublicKey) { 198 java.security.interfaces.RSAPublicKey rsaKey = 199 (java.security.interfaces.RSAPublicKey) key;
|
/openjdk7/jdk/src/share/classes/java/security/interfaces/ |
H A D | RSAPublicKey.java | 37 public interface RSAPublicKey extends java.security.PublicKey, RSAKey interface in inherits:java.security.PublicKey,RSAKey
|
/openjdk7/jdk/test/sun/security/tools/keytool/ |
H A D | NewSize7.java | 36 import java.security.interfaces.RSAPublicKey; 51 RSAPublicKey r = (RSAPublicKey)ks.getCertificate("a").getPublicKey();
|
/openjdk7/jdk/test/sun/security/rsa/ |
H A D | TestKeyPairGeneratorLength.java | 48 RSAPublicKey key = (RSAPublicKey)kp.getPublic();
|
H A D | TestKeyPairGenerator.java | 64 RSAPublicKey rsaKey = (RSAPublicKey)publicKey; 118 RSAPublicKey publicKey = (RSAPublicKey)kp.getPublic();
|
H A D | TestSignatures.java | 84 RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
|
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/ |
H A D | KeyValue.java | 34 import java.security.interfaces.RSAPublicKey; 95 * {@link DSAPublicKey} and {@link RSAPublicKey}, respectively. Note that not
|
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/keyvalues/ |
H A D | RSAKeyValue.java | 28 import java.security.interfaces.RSAPublicKey; 88 if (key instanceof java.security.interfaces.RSAPublicKey ) { 89 this.addBigIntegerElement(((RSAPublicKey) key).getModulus(), 91 this.addBigIntegerElement(((RSAPublicKey) key).getPublicExponent(),
|
/openjdk7/jdk/test/sun/security/pkcs11/rsa/ |
H A D | TestKeyPairGenerator.java | 65 RSAPublicKey rsaKey = (RSAPublicKey)publicKey; 119 RSAPublicKey publicKey = (RSAPublicKey)kp.getPublic();
|
H A D | TestSignatures.java | 85 RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
|
/openjdk7/jdk/src/share/classes/sun/security/rsa/ |
H A D | RSAKeyFactory.java | 43 * . RSAPublicKey 156 // If a RSAPrivateKey/RSAPublicKey, make sure the 163 // If a RSAPublicKey, make sure the exponent isn't too big. 224 if (key instanceof RSAPublicKey) { 228 RSAPublicKey rsaKey = (RSAPublicKey)key; 235 // catch providers that incorrectly implement RSAPublicKey 243 + "of RSAPublicKey or have X.509 encoding"); 351 if (key instanceof RSAPublicKey) { 352 RSAPublicKey rsaKe [all...] |
H A D | RSAPublicKeyImpl.java | 48 public final class RSAPublicKeyImpl extends X509Key implements RSAPublicKey {
|
H A D | RSASignature.java | 70 private RSAPublicKey publicKey; 92 RSAPublicKey rsaKey = (RSAPublicKey)RSAKeyFactory.toRSAKey(publicKey);
|
H A D | RSACore.java | 89 public static byte[] rsa(byte[] msg, RSAPublicKey key)
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | JsseJce.java | 32 import java.security.interfaces.RSAPublicKey; 356 if (key instanceof RSAPublicKey) { 357 modulus = ((RSAPublicKey)key).getModulus(); 366 if (key instanceof RSAPublicKey) { 367 RSAPublicKey rsaKey = (RSAPublicKey)key;
|
H A D | ClientHandshaker.java | 34 import java.security.interfaces.RSAPublicKey; 174 if (!(serverKey instanceof RSAPublicKey)) { 779 if (!(serverKey instanceof RSAPublicKey)) {
|
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/ |
H A D | DOMKeyValue.java | 40 import java.security.interfaces.RSAPublicKey; 78 } else if (key instanceof RSAPublicKey) { 79 RSAPublicKey rkey = (RSAPublicKey) key; 131 } else if (publicKey instanceof RSAPublicKey) { 221 private RSAPublicKey unmarshalRSAKeyValue(Element kvtElem) 237 return (RSAPublicKey) generatePublicKey(rsakf, spec);
|
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
H A D | RSACipher.java | 106 private RSAPublicKey publicKey; 260 if (key instanceof RSAPublicKey) { 262 publicKey = (RSAPublicKey)key;
|
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/ |
H A D | P11RSAKeyFactory.java | 54 if (key instanceof RSAPublicKey) { 55 RSAPublicKey rsaKey = (RSAPublicKey)key; 67 + "of RSAPublicKey or have X.509 encoding");
|
/openjdk7/jdk/test/javax/crypto/CryptoPermission/ |
H A D | RSANoLimit.java | 39 import java.security.interfaces.RSAPublicKey; 151 RSAPublicKey pubKey = (RSAPublicKey) kf.generatePublic(pubKeySpec);
|
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/ |
H A D | KeyValue.java | 108 } else if (pk instanceof java.security.interfaces.RSAPublicKey) {
|
/openjdk7/jdk/make/sun/security/mscapi/ |
H A D | Makefile | 132 sun/security/mscapi/RSAPublicKey.java \
|