Home | History | Annotate | Download | only in syslogd

Lines Matching defs:dsa

48  * 2. The draft only defines DSA signatures. I hope it will be extended
49 * to DSS, thus allowing DSA, RSA (ANSI X9.31) and ECDSA (ANSI X9.62)
56 * 2. check; definitely only DSA in this version.
62 * - cannot use OpenPGP keys, only PKIX or DSA due to OpenSSL capabilities
108 /* this is the place to add non-DSA key types and algorithms */
198 DPRINTF(D_SIGN, "X.509 cert has no DSA key\n");
232 DSA *dsa;
235 "--> use DSA with type 'K'\n");
240 if ((dsa = DSA_new()) == NULL) {
244 if (!DSA_generate_parameters_ex(dsa, SIGN_GENCERT_BITS, NULL, 0,
249 if (!DSA_generate_key(dsa)) {
253 if (!EVP_PKEY_assign_DSA(privkey, dsa)) {
262 der_len = i2d_DSA_PUBKEY(dsa, NULL);
269 if (i2d_DSA_PUBKEY(dsa, &ptr_der_pubkey) <= 0) {