2000-05-24 19:54:43 -04:00
|
|
|
/*
|
2001-01-09 17:01:04 -05:00
|
|
|
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
2000-07-31 21:33:37 -04:00
|
|
|
*
|
2000-05-24 19:54:43 -04:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-07-31 21:33:37 -04:00
|
|
|
*
|
2000-07-27 05:55:03 -04:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
|
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-05-24 19:54:43 -04:00
|
|
|
*/
|
|
|
|
|
|
2001-08-08 18:54:55 -04:00
|
|
|
/* $Id: dnssectool.h,v 1.15 2001/08/08 22:54:16 gson Exp $ */
|
2000-06-22 18:00:42 -04:00
|
|
|
|
2000-05-24 19:54:43 -04:00
|
|
|
#ifndef DNSSECTOOL_H
|
2000-06-01 14:49:22 -04:00
|
|
|
#define DNSSECTOOL_H 1
|
2000-05-24 19:54:43 -04:00
|
|
|
|
2000-06-19 14:04:22 -04:00
|
|
|
#include <isc/log.h>
|
2000-09-08 04:38:59 -04:00
|
|
|
#include <isc/stdtime.h>
|
2000-08-11 19:07:53 -04:00
|
|
|
#include <dns/rdatastruct.h>
|
2000-08-14 00:43:17 -04:00
|
|
|
#include <dst/dst.h>
|
2000-06-19 14:04:22 -04:00
|
|
|
|
2001-03-30 21:12:26 -05:00
|
|
|
typedef void (fatalcallback_t)(void);
|
|
|
|
|
|
2000-06-01 14:49:22 -04:00
|
|
|
void
|
2000-06-19 14:04:22 -04:00
|
|
|
fatal(const char *format, ...) ISC_FORMAT_PRINTF(1, 2);
|
2000-05-24 19:54:43 -04:00
|
|
|
|
2001-03-30 21:12:26 -05:00
|
|
|
void
|
|
|
|
|
setfatalcallback(fatalcallback_t *callback);
|
|
|
|
|
|
2000-06-01 14:49:22 -04:00
|
|
|
void
|
|
|
|
|
check_result(isc_result_t result, const char *message);
|
|
|
|
|
|
|
|
|
|
void
|
2001-08-08 18:54:55 -04:00
|
|
|
vbprintf(int level, const char *fmt, ...) ISC_FORMAT_PRINTF(2, 3);
|
2000-06-01 14:49:22 -04:00
|
|
|
|
2000-08-14 00:43:17 -04:00
|
|
|
void
|
|
|
|
|
type_format(const dns_rdatatype_t type, char *cp, unsigned int size);
|
|
|
|
|
#define TYPE_FORMATSIZE 10
|
2000-06-01 14:49:22 -04:00
|
|
|
|
2000-08-14 00:43:17 -04:00
|
|
|
void
|
|
|
|
|
alg_format(const dns_secalg_t alg, char *cp, unsigned int size);
|
|
|
|
|
#define ALG_FORMATSIZE 10
|
2000-06-01 14:49:22 -04:00
|
|
|
|
2000-08-14 00:43:17 -04:00
|
|
|
void
|
|
|
|
|
sig_format(dns_rdata_sig_t *sig, char *cp, unsigned int size);
|
|
|
|
|
#define SIG_FORMATSIZE (DNS_NAME_FORMATSIZE + ALG_FORMATSIZE + sizeof("65535"))
|
2000-06-01 14:49:22 -04:00
|
|
|
|
2000-08-14 00:43:17 -04:00
|
|
|
void
|
|
|
|
|
key_format(const dst_key_t *key, char *cp, unsigned int size);
|
|
|
|
|
#define KEY_FORMATSIZE (DNS_NAME_FORMATSIZE + ALG_FORMATSIZE + sizeof("65535"))
|
2000-08-11 19:07:53 -04:00
|
|
|
|
2000-06-01 14:49:22 -04:00
|
|
|
void
|
|
|
|
|
setup_logging(int verbose, isc_mem_t *mctx, isc_log_t **logp);
|
|
|
|
|
|
2000-09-26 18:11:25 -04:00
|
|
|
void
|
|
|
|
|
cleanup_logging(isc_log_t **logp);
|
|
|
|
|
|
2000-06-09 18:34:40 -04:00
|
|
|
void
|
2000-06-09 21:28:11 -04:00
|
|
|
setup_entropy(isc_mem_t *mctx, const char *randomfile, isc_entropy_t **ectx);
|
2000-06-09 18:34:40 -04:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cleanup_entropy(isc_entropy_t **ectx);
|
|
|
|
|
|
2000-09-08 04:38:59 -04:00
|
|
|
isc_stdtime_t
|
|
|
|
|
strtotime(char *str, isc_int64_t now, isc_int64_t base);
|
|
|
|
|
|
2000-06-01 14:49:22 -04:00
|
|
|
#endif /* DNSSEC_DNSSECTOOL_H */
|