Searched refs:RSAPublicKey (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAKeyPair.java37 private final RSAPublicKey publicKey;
45 publicKey = new RSAPublicKey(hCryptProv, hCryptKey, keyLength);
52 public RSAPublicKey getPublic() {
H A DRSAPublicKey.java42 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 DRSASignature.java240 // 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 DRSACipher.java197 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 DRSAPublicKey.java37 public interface RSAPublicKey extends java.security.PublicKey, RSAKey interface in inherits:java.security.PublicKey,RSAKey
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DNewSize7.java36 import java.security.interfaces.RSAPublicKey;
51 RSAPublicKey r = (RSAPublicKey)ks.getCertificate("a").getPublicKey();
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyPairGeneratorLength.java48 RSAPublicKey key = (RSAPublicKey)kp.getPublic();
H A DTestKeyPairGenerator.java64 RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
118 RSAPublicKey publicKey = (RSAPublicKey)kp.getPublic();
H A DTestSignatures.java84 RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyValue.java34 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 DRSAKeyValue.java28 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 DTestKeyPairGenerator.java65 RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
119 RSAPublicKey publicKey = (RSAPublicKey)kp.getPublic();
H A DTestSignatures.java85 RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyFactory.java43 * . 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 DRSAPublicKeyImpl.java48 public final class RSAPublicKeyImpl extends X509Key implements RSAPublicKey {
H A DRSASignature.java70 private RSAPublicKey publicKey;
92 RSAPublicKey rsaKey = (RSAPublicKey)RSAKeyFactory.toRSAKey(publicKey);
H A DRSACore.java89 public static byte[] rsa(byte[] msg, RSAPublicKey key)
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DJsseJce.java32 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 DClientHandshaker.java34 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 DDOMKeyValue.java40 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 DRSACipher.java106 private RSAPublicKey publicKey;
260 if (key instanceof RSAPublicKey) {
262 publicKey = (RSAPublicKey)key;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSAKeyFactory.java54 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 DRSANoLimit.java39 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 DKeyValue.java108 } else if (pk instanceof java.security.interfaces.RSAPublicKey) {
/openjdk7/jdk/make/sun/security/mscapi/
H A DMakefile132 sun/security/mscapi/RSAPublicKey.java \

Completed in 4777 milliseconds

12