Searched refs:RSAKey (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/interfaces/
H A DRSAKey.java41 public interface RSAKey { interface
H A DRSAPrivateKey.java39 public interface RSAPrivateKey extends java.security.PrivateKey, RSAKey
H A DRSAPublicKey.java37 public interface RSAPublicKey extends java.security.PublicKey, RSAKey
/openjdk7/jdk/test/sun/security/mscapi/
H A DAccessKeyStore.java32 import java.security.interfaces.RSAKey;
106 if (key instanceof RSAKey) {
108 " (" + ((RSAKey)key).getModulus().bitLength() +
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DKeyUtil.java33 import java.security.interfaces.RSAKey;
79 } else if (key instanceof RSAKey) {
80 RSAKey pubk = (RSAKey)key;
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyFactory.java105 public static RSAKey toRSAKey(Key key) throws InvalidKeyException {
109 return (RSAKey)key;
111 return (RSAKey)INSTANCE.engineTranslateKey(key);
H A DRSACore.java71 public static int getByteLength(RSAKey key) {
H A DRSASignature.java117 private void initCommon(RSAKey rsaKey, SecureRandom random)
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DRSACipher.java259 RSAKey rsaKey = RSAKeyFactory.toRSAKey(key);
440 RSAKey rsaKey = RSAKeyFactory.toRSAKey(key);
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSACipher.java400 } else if (key instanceof RSAKey) {
401 return ((RSAKey) key).getModulus().bitLength();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Signature.java362 keyLen = ((RSAKey) publicKey).getModulus().bitLength();
384 keyLen = ((RSAKey) privateKey).getModulus().bitLength();

Completed in 59 milliseconds