Initial import

This commit is contained in:
Lucas 2021-12-10 22:41:31 +00:00
commit 6f48d8b947
17 changed files with 854 additions and 0 deletions

25
util.h Normal file
View file

@ -0,0 +1,25 @@
/*
* ldnssec-utils
*
* Written in 2021 by Lucas
*
* To the extent possible under law, the author(s) have dedicated all
* copyright and related and neighboring rights to this software to the
* public domain worldwide. This software is distributed without any
* warranty.
*
* You should have received a copy of the CC0 Public Domain Dedication
* along with this software. If not, see
* <http://creativecommons.org/publicdomain/zero/1.0/>.
*/
#ifndef _UTIL_H_INCLUDED
#define _UTIL_H_INCLUDED
extern ldns_lookup_table ldnssec_hashes[];
ldns_hash ldnssec_get_hash_algorithm_by_name(const char *);
void fatal_check_minimum_ldns_revision(void);
#endif /* !_UTIL_H_INCLUDED */