Searched defs:rsaKey (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSASignature.java92 RSAPublicKey rsaKey = (RSAPublicKey)RSAKeyFactory.toRSAKey(publicKey);
94 this.publicKey = rsaKey;
95 initCommon(rsaKey, null);
107 RSAPrivateKey rsaKey =
109 this.privateKey = rsaKey;
111 initCommon(rsaKey, random);
117 private void initCommon(RSAKey rsaKey, SecureRandom random) argument
120 int keySize = RSACore.getByteLength(rsaKey);

Completed in 27 milliseconds