HomeSort by relevance Sort by last modified time
    Searched defs:rsaPublicKey (Results 1 - 5 of 5) sorted by null

  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSignatureRawRSA.java 27 import java.security.interfaces.RSAPublicKey;
112 OpenSSLRSAPublicKey rsaPublicKey = (OpenSSLRSAPublicKey) publicKey;
113 key = rsaPublicKey.getOpenSSLKey();
114 } else if (publicKey instanceof RSAPublicKey) {
115 RSAPublicKey rsaPublicKey = (RSAPublicKey) publicKey;
116 key = OpenSSLRSAPublicKey.getInstance(rsaPublicKey);
OpenSSLCipherRSA.java 32 import java.security.interfaces.RSAPublicKey;
193 OpenSSLRSAPublicKey rsaPublicKey = (OpenSSLRSAPublicKey) key;
195 this.key = rsaPublicKey.getOpenSSLKey();
196 } else if (key instanceof RSAPublicKey) {
197 RSAPublicKey rsaPublicKey = (RSAPublicKey) key;
199 this.key = OpenSSLRSAPublicKey.getInstance(rsaPublicKey);
229 if (key instanceof RSAPublicKey) {
230 return ((RSAPublicKey) key).getModulus().bitLength()
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLSignatureRawRSA.java 28 import java.security.interfaces.RSAPublicKey;
116 OpenSSLRSAPublicKey rsaPublicKey = (OpenSSLRSAPublicKey) publicKey;
117 key = rsaPublicKey.getOpenSSLKey();
118 } else if (publicKey instanceof RSAPublicKey) {
119 RSAPublicKey rsaPublicKey = (RSAPublicKey) publicKey;
120 key = OpenSSLRSAPublicKey.getInstance(rsaPublicKey);
OpenSSLCipherRSA.java 33 import java.security.interfaces.RSAPublicKey;
195 OpenSSLRSAPublicKey rsaPublicKey = (OpenSSLRSAPublicKey) key;
197 this.key = rsaPublicKey.getOpenSSLKey();
198 } else if (key instanceof RSAPublicKey) {
199 RSAPublicKey rsaPublicKey = (RSAPublicKey) key;
201 this.key = OpenSSLRSAPublicKey.getInstance(rsaPublicKey);
231 if (key instanceof RSAPublicKey) {
232 return ((RSAPublicKey) key).getModulus().bitLength()
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyFactoryTest.java 38 import java.security.interfaces.RSAPublicKey;
246 RSAPublicKey rsaPublicKey = (RSAPublicKey) publicKey;
249 assertEquals(rsaPublicKey.getModulus(), spec.getModulus());
250 assertEquals(rsaPublicKey.getPublicExponent(), spec.getPublicExponent());

Completed in 785 milliseconds