/usr/include/dnssec/dnssec.h is in libknot-dev 2.6.5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116  | /*  Copyright (C) 2014 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
/**
 * \file
 *
 * Convenient header to include all library modules.
 *
 * \mainpage Introduction
 *
 * The \c libdnssec is a DNSSEC library for authoritative name servers and
 * similar solutions for DNSSEC management on the server side. Primarily,
 * the library is designed for use in the [Knot DNS](https://www.knot-dns.cz)
 * server.
 *
 * This is the API documentation for the \c libdnssec library.
 * At the moment, the API is not stable and is subject to frequent changes.
 *
 * The source code of the library is available in the Knot DNS repository in
 * the \c dnssec directory. Compilation of the library is integrated into the
 * Knot DNS build.
 *
 * \par Git repository
 * [git://git.nic.cz/knot-dns.git](git://git.nic.cz/knot-dns.git)
 *
 * \par Git repository browser
 * https://gitlab.labs.nic.cz/knot/knot-dns/tree/master/src/dnssec
 *
 * \par Issue tracker
 * https://gitlab.labs.nic.cz/knot/knot-dns/issues
 *
 * \par Mailing list
 * knot-dns-users@lists.nic.cz
 *
 * \author Jan Vcelak
 *
 * \copyright 2013-2014 CZ.NIC, z.s.p.o.
 *
 * \copyright Licensed under the terms of
 * [GNU General Public License](https://www.gnu.org/licenses/gpl-3.0.txt)
 * version 3 or later.
 *
 * \page library Library overview
 *
 * \section dependencies Library dependencies
 *
 * In order to compile Knot DNS with \c libdnssec, following libraries
 * are required:
 *
 * - [GnuTLS](http://www.gnutls.org) >= 3.0
 *   for cryptographic operations.
 * - [Nettle](http://www.lysator.liu.se/~nisse/nettle/) >= 2.4
 *   for Base64 encoding.
 * - [LibYAML](http://pyyaml.org/wiki/LibYAML) >= 0.1
 *   for YAML parsing and writing.
 *
 * On Debian based distributions, install following packages:
 *
 *     libgnutls28-dev nettle-dev libyaml-dev
 *
 * On Fedora based distributions, install following packages:
 *
 *     gnutls-devel nettle-devel libyaml-devel
 *
 * The library also utilizes following libraries, which are bundled with
 * \c libdnssec:
 *
 * - [LibUCW](http://www.ucw.cz/libucw/) for various internal structures.
 * - [C TAP Harness](http://www.eyrie.org/~eagle/software/c-tap-harness/)
 *   for unit tests writing and execution.
 *
 * \section organization Library organization
 *
 * The library is structured into modules. Interface of each module is covered
 * by a separate header file.
 *
 * It is recommended to include only required modules, for instance:
 *
 * ~~~~ {.c}
 * #include <dnssec/binary.h>
 * #include <dnssec/key.h>
 * ~~~~
 *
 * In order to include all headers, following header can be used:
 *
 * ~~~~ {.c}
 * #include <dnssec/dnssec.h>
 * ~~~~
 */
#pragma once
#include <dnssec/binary.h>
#include <dnssec/crypto.h>
#include <dnssec/error.h>
#include <dnssec/key.h>
#include <dnssec/keyid.h>
#include <dnssec/keystore.h>
#include <dnssec/keytag.h>
#include <dnssec/list.h>
#include <dnssec/nsec.h>
#include <dnssec/random.h>
#include <dnssec/sign.h>
#include <dnssec/tsig.h>
 |