OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OpenSSLRSAPublicKey
(Results
1 - 7
of
7
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLRSAPublicKey.java
28
public class
OpenSSLRSAPublicKey
implements RSAPublicKey, OpenSSLKeyHolder {
39
OpenSSLRSAPublicKey
(OpenSSLKey key) {
48
OpenSSLRSAPublicKey
(RSAPublicKeySpec spec) throws InvalidKeySpecException {
125
if (o instanceof
OpenSSLRSAPublicKey
) {
126
OpenSSLRSAPublicKey
other = (
OpenSSLRSAPublicKey
) o;
159
final StringBuilder sb = new StringBuilder("
OpenSSLRSAPublicKey
{");
OpenSSLSignatureRawRSA.java
115
if (publicKey instanceof
OpenSSLRSAPublicKey
) {
116
OpenSSLRSAPublicKey
rsaPublicKey = (
OpenSSLRSAPublicKey
) publicKey;
120
key =
OpenSSLRSAPublicKey
.getInstance(rsaPublicKey);
OpenSSLRSAKeyPairGenerator.java
48
PublicKey pubKey = new
OpenSSLRSAPublicKey
(key);
OpenSSLCipherRSA.java
175
} else if (key instanceof
OpenSSLRSAPublicKey
) {
176
OpenSSLRSAPublicKey
rsaPublicKey = (
OpenSSLRSAPublicKey
) key;
182
this.key =
OpenSSLRSAPublicKey
.getInstance(rsaPublicKey);
OpenSSLRSAKeyFactory.java
45
return new
OpenSSLRSAPublicKey
((RSAPublicKeySpec) keySpec);
168
if ((key instanceof
OpenSSLRSAPublicKey
) || (key instanceof OpenSSLRSAPrivateKey)) {
OpenSSLKey.java
83
return new
OpenSSLRSAPublicKey
(this);
OpenSSLSignature.java
202
key =
OpenSSLRSAPublicKey
.getInstance(rsaPublicKey);
Completed in 87 milliseconds