HomeSort by relevance Sort by last modified time
    Searched refs:OpenSSLRSAPrivateKey (Results 1 - 7 of 7) sorted by null

  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLRSAPrivateKey.java 29 public class OpenSSLRSAPrivateKey implements RSAPrivateKey, OpenSSLKeyHolder {
40 OpenSSLRSAPrivateKey(OpenSSLKey key) {
44 OpenSSLRSAPrivateKey(OpenSSLKey key, byte[][] params) {
55 public OpenSSLRSAPrivateKey(RSAPrivateKeySpec rsaKeySpec) throws InvalidKeySpecException {
84 static OpenSSLRSAPrivateKey getInstance(OpenSSLKey key) {
89 return new OpenSSLRSAPrivateKey(key, params);
213 if (o instanceof OpenSSLRSAPrivateKey) {
214 OpenSSLRSAPrivateKey other = (OpenSSLRSAPrivateKey) o;
244 final StringBuilder sb = new StringBuilder("OpenSSLRSAPrivateKey{");
    [all...]
OpenSSLSignatureRawRSA.java 86 if (privateKey instanceof OpenSSLRSAPrivateKey) {
87 OpenSSLRSAPrivateKey rsaPrivateKey = (OpenSSLRSAPrivateKey) privateKey;
94 key = OpenSSLRSAPrivateKey.getInstance(rsaPrivateKey);
OpenSSLRSAKeyPairGenerator.java 47 PrivateKey privKey = OpenSSLRSAPrivateKey.getInstance(key);
OpenSSLCipherRSA.java 163 if (key instanceof OpenSSLRSAPrivateKey) {
164 OpenSSLRSAPrivateKey rsaPrivateKey = (OpenSSLRSAPrivateKey) key;
174 this.key = OpenSSLRSAPrivateKey.getInstance(rsaPrivateKey);
OpenSSLRSAPrivateCrtKey.java 30 public class OpenSSLRSAPrivateCrtKey extends OpenSSLRSAPrivateKey implements RSAPrivateCrtKey {
208 if (o instanceof OpenSSLRSAPrivateKey) {
209 OpenSSLRSAPrivateKey other = (OpenSSLRSAPrivateKey) o;
OpenSSLKey.java 105 return OpenSSLRSAPrivateKey.wrapPlatformKey((RSAPrivateKey) key);
172 return new OpenSSLRSAPrivateKey(this);
OpenSSLRSAKeyFactory.java 62 return new OpenSSLRSAPrivateKey((RSAPrivateKeySpec) keySpec);
168 if ((key instanceof OpenSSLRSAPublicKey) || (key instanceof OpenSSLRSAPrivateKey)) {

Completed in 197 milliseconds