Searched refs:RSAKeyFactory (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAKeyPairGenerator.java34 import sun.security.rsa.RSAKeyFactory;
64 RSAKeyFactory.checkKeyLengths(keySize, null,
95 RSAKeyFactory.checkKeyLengths(tmpSize, null,
H A DRSASignature.java44 import sun.security.rsa.RSAKeyFactory;
257 RSAKeyFactory.checkKeyLengths(((modulus.bitLength() + 7) & ~7),
297 RSAKeyFactory.checkKeyLengths(((privateKey.length() + 7) & ~7),
H A DRSACipher.java37 import sun.security.rsa.RSAKeyFactory;
208 RSAKeyFactory.checkKeyLengths(((modulus.bitLength() + 7) & ~7),
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPublicKeyImpl.java43 * @see RSAKeyFactory
57 * RSAKeyFactory and the RSAKeyPairGenerator.
63 RSAKeyFactory.checkRSAProviderKeyLengths(n.bitLength(), e);
80 * Construct a key from its encoding. Used by RSAKeyFactory.
84 RSAKeyFactory.checkRSAProviderKeyLengths(n.bitLength(), e);
H A DRSAKeyFactory.java61 public final class RSAKeyFactory extends KeyFactorySpi { class in inherits:KeyFactorySpi
92 private final static RSAKeyFactory INSTANCE = new RSAKeyFactory();
94 public RSAKeyFactory() { method in class:RSAKeyFactory
126 RSAKeyFactory.MIN_MODLEN, Integer.MAX_VALUE);
H A DRSAKeyPairGenerator.java50 // size of the key to generate, >= RSAKeyFactory.MIN_MODLEN
67 RSAKeyFactory.checkKeyLengths(keySize, RSAKeyGenParameterSpec.F4,
106 RSAKeyFactory.checkKeyLengths(tmpKeySize, tmpPublicExponent,
H A DRSAPrivateKeyImpl.java45 * @see RSAKeyFactory
59 * RSAKeyFactory and the RSAKeyPairGenerator.
64 RSAKeyFactory.checkRSAProviderKeyLengths(n.bitLength(), null);
H A DRSAPrivateCrtKeyImpl.java46 * @see RSAKeyFactory
71 * and a non-CRT key otherwise. Used by RSAKeyFactory.
92 RSAKeyFactory.checkRSAProviderKeyLengths(n.bitLength(), e);
97 * RSAKeyFactory and the RSAKeyPairGenerator.
110 RSAKeyFactory.checkRSAProviderKeyLengths(n.bitLength(), e);
H A DRSASignature.java92 RSAPublicKey rsaKey = (RSAPublicKey)RSAKeyFactory.toRSAKey(publicKey);
108 (RSAPrivateKey)RSAKeyFactory.toRSAKey(privateKey);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSAKeyFactory.java38 import sun.security.rsa.RSAKeyFactory;
191 RSAKeyFactory.checkKeyLengths(n.bitLength(), e, -1, 64 * 1024);
213 RSAKeyFactory.checkKeyLengths(n.bitLength(), null, -1, 64 * 1024);
237 RSAKeyFactory.checkKeyLengths(n.bitLength(), e, -1, 64 * 1024);
H A DP11KeyPairGenerator.java41 import sun.security.rsa.RSAKeyFactory;
200 RSAKeyFactory.checkKeyLengths(keySize, tmpExponent,
H A DP11KeyStore.java83 import sun.security.rsa.RSAKeyFactory;
1336 RSAKeyFactory.checkKeyLengths(keyLength, null,
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DRSACipher.java259 RSAKey rsaKey = RSAKeyFactory.toRSAKey(key);
440 RSAKey rsaKey = RSAKeyFactory.toRSAKey(key);

Completed in 48 milliseconds