Home | History | Annotate | Download | only in jsse

Lines Matching defs:dsa

72         jdkToOpenSsl.put("SHA/DSA", SHA1DSA.class);
73 jdkToOpenSsl.put("DSA", SHA1DSA.class);
86 * Holds a pointer to the native DSA key.
88 private int dsa;
181 dsa = NativeCrypto.EVP_PKEY_new_DSA(dsaParams.getP().toByteArray(),
198 throw new InvalidKeyException("Need DSA or RSA public key");
219 int handle = (rsa != 0) ? rsa : dsa;
223 throw new SignatureException("Need DSA or RSA public key");
237 if (dsa != 0) {
238 NativeCrypto.EVP_PKEY_free(dsa);
280 super("DSA-SHA1");