19 February 2016: Wouter
- Print understandable debug log when unusable DS record is seen.
- - load gost algorithm into unbound-host.
+ - load gost algorithm if digest is seen before key algorithm.
17 February 2016: Wouter
- Fix that "make install" fails due to "text file busy" error.
struct ub_ctx* ctx = NULL;
int debuglevel = 0;
-# ifdef USE_GOST
- (void)sldns_key_EVP_load_gost_id();
-# endif
ctx = ub_ctx_create();
if(!ctx) {
fprintf(stderr, "error: out of memory\n");
#endif
#ifdef USE_GOST
case LDNS_HASH_GOST:
+ /* we support GOST if it can be loaded */
+ (void)sldns_key_EVP_load_gost_id();
if(EVP_get_digestbyname("md_gost94"))
return 32;
else return 0;