* Prepare for ED25519, ED448 support: todo convert* routines in
dnssec.h, once openssl has support for signing with these algorithms.
The dns algorithm number is not yet allocated. These features are
- not fully implemented yet.
+ not fully implemented yet, openssl (1.1) does not support the
+ algorithms enough to generate keys and sign and verify with them.
* Fix _answerfrom comment in ldns_struct_pkt.
* Fix drill axfr ipv4/ipv6 queries.
* Fix comment referring to mk_query in packet.h to pkt_query_new.
* Fix description of QR flag in packet.h.
+ * Fix for openssl 1.1.0 API changes.
1.6.17 2014-01-10
* Fix ldns_dnssec_zone_new_frm_fp_l to allow the last parsed line of a
#else
if(!RSA_set0_key(rsa, n, e, d))
goto error;
+ n = NULL;
+ e = NULL;
+ d = NULL;
if(!RSA_set0_factors(rsa, p, q))
goto error;
+ p = NULL;
+ q = NULL;
if(!RSA_set0_crt_params(rsa, dmp1, dmq1, iqmp))
goto error;
#endif
#else
if(!DSA_set0_pqg(dsa, p, q, g))
goto error;
+ p = NULL;
+ q = NULL;
+ g = NULL;
if(!DSA_set0_key(dsa, pub_key, priv_key))
goto error;
#endif