Searched refs:OpenSSLDSAPrivateKey (Results 1 - 5 of 5) sorted by relevance

/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLDSAPrivateKey.java30 public class OpenSSLDSAPrivateKey implements DSAPrivateKey, OpenSSLKeyHolder { class in inherits:DSAPrivateKey,OpenSSLKeyHolder
37 OpenSSLDSAPrivateKey(OpenSSLKey key) { method in class:OpenSSLDSAPrivateKey
46 OpenSSLDSAPrivateKey(DSAPrivateKeySpec dsaKeySpec) throws InvalidKeySpecException { method in class:OpenSSLDSAPrivateKey
134 if (o instanceof OpenSSLDSAPrivateKey) {
135 OpenSSLDSAPrivateKey other = (OpenSSLDSAPrivateKey) o;
158 * OpenSSLDSAPrivateKey case.
185 final StringBuilder sb = new StringBuilder("OpenSSLDSAPrivateKey{");
H A DOpenSSLDSAKeyPairGenerator.java52 final OpenSSLDSAPrivateKey privKey = new OpenSSLDSAPrivateKey(key);
H A DOpenSSLDSAKeyFactory.java59 return new OpenSSLDSAPrivateKey((DSAPrivateKeySpec) keySpec);
144 if ((key instanceof OpenSSLDSAPublicKey) || (key instanceof OpenSSLDSAPrivateKey)) {
H A DOpenSSLKey.java120 return new OpenSSLDSAPrivateKey(this);
H A DOpenSSLSignature.java174 key = OpenSSLDSAPrivateKey.getInstance(dsaPrivateKey);

Completed in 66 milliseconds