From: Wouter Wijngaards Date: Fri, 19 Feb 2016 12:11:36 +0000 (+0000) Subject: - load gost algorithm into unbound-host. X-Git-Tag: release-1.5.8~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03d43b3c2e6dab75d61b4080b93aa856945f38d6;p=thirdparty%2Funbound.git - load gost algorithm into unbound-host. git-svn-id: file:///svn/unbound/trunk@3628 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index cf0e56b45..5f02a2b05 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 19 February 2016: Wouter - Print understandable debug log when unusable DS record is seen. + - load gost algorithm into unbound-host. 17 February 2016: Wouter - Fix that "make install" fails due to "text file busy" error. diff --git a/smallapp/unbound-host.c b/smallapp/unbound-host.c index 30fef51fd..b256a3226 100644 --- a/smallapp/unbound-host.c +++ b/smallapp/unbound-host.c @@ -418,6 +418,9 @@ int main(int argc, char* argv[]) 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");