Merge branch 'vendor/OPENSSL'
[dragonfly.git] / contrib / bind-9.3 / lib / dns / include / dns / ds.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2002  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: ds.h,v 1.3.2.1 2004/03/08 02:08:00 marka Exp $ */
19
20 #ifndef DNS_DS_H
21 #define DNS_DS_H 1
22
23 #include <isc/lang.h>
24
25 #include <dns/types.h>
26
27 #define DNS_DSDIGEST_SHA1 (1)
28
29 /*
30  * Assuming SHA-1 digest type.
31  */
32 #define DNS_DS_BUFFERSIZE (24)
33
34 ISC_LANG_BEGINDECLS
35
36 isc_result_t
37 dns_ds_buildrdata(dns_name_t *owner, dns_rdata_t *key,
38                   unsigned int digest_type, unsigned char *buffer,
39                   dns_rdata_t *rdata);
40 /*
41  * Build the rdata of a DS record.
42  *
43  * Requires:
44  *      key     Points to a valid DNS KEY record.
45  *      buffer  Points to a temporary buffer of at least
46  *              DNS_DS_BUFFERSIZE bytes.
47  *      rdata   Points to an initialized dns_rdata_t.
48  *
49  * Ensures:
50  *      *rdata  Contains a valid DS rdata.  The 'data' member refers
51  *              to 'buffer'.
52  */
53
54 ISC_LANG_ENDDECLS
55
56 #endif /* DNS_DS_H */