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

/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLDSAPrivateKey.java65 static OpenSSLKey getInstance(DSAPrivateKey dsaPrivateKey) throws InvalidKeyException { argument
70 if (dsaPrivateKey.getFormat() == null) {
71 return wrapPlatformKey(dsaPrivateKey);
75 DSAParams dsaParams = dsaPrivateKey.getParams();
81 dsaPrivateKey.getX().toByteArray()));
87 public static OpenSSLKey wrapPlatformKey(DSAPrivateKey dsaPrivateKey) { argument
88 return new OpenSSLKey(NativeCrypto.getDSAPrivateKeyWrapper(dsaPrivateKey), true);

Completed in 88 milliseconds