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

  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSignatureRawRSA.java 26 import java.security.interfaces.RSAPrivateKey;
87 OpenSSLRSAPrivateKey rsaPrivateKey = (OpenSSLRSAPrivateKey) privateKey;
88 key = rsaPrivateKey.getOpenSSLKey();
90 RSAPrivateCrtKey rsaPrivateKey = (RSAPrivateCrtKey) privateKey;
91 key = OpenSSLRSAPrivateCrtKey.getInstance(rsaPrivateKey);
92 } else if (privateKey instanceof RSAPrivateKey) {
93 RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) privateKey;
94 key = OpenSSLRSAPrivateKey.getInstance(rsaPrivateKey);
    [all...]
OpenSSLCipherRSA.java 29 import java.security.interfaces.RSAPrivateKey;
164 OpenSSLRSAPrivateKey rsaPrivateKey = (OpenSSLRSAPrivateKey) key;
166 this.key = rsaPrivateKey.getOpenSSLKey();
168 RSAPrivateCrtKey rsaPrivateKey = (RSAPrivateCrtKey) key;
170 this.key = OpenSSLRSAPrivateCrtKey.getInstance(rsaPrivateKey);
171 } else if (key instanceof RSAPrivateKey) {
172 RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) key;
174 this.key = OpenSSLRSAPrivateKey.getInstance(rsaPrivateKey);
    [all...]

Completed in 204 milliseconds