0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews/*
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Copyright (C) 2002, 2004, 2005, 2007, 2016 Internet Systems Consortium, Inc. ("ISC")
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews *
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * This Source Code Form is subject to the terms of the Mozilla Public
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * License, v. 2.0. If a copy of the MPL was not distributed with this
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * file, You can obtain one at http://mozilla.org/MPL/2.0/.
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews */
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews
70e5a7403f0e0a3bd292b8287c5fed5772c15270Automatic Updater/* $Id: ds_43.h,v 1.7 2007/06/19 23:47:17 tbox Exp $ */
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews#ifndef GENERIC_DS_43_H
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews#define GENERIC_DS_43_H 1
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein/*!
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein * \brief per draft-ietf-dnsext-delegation-signer-05.txt */
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrewstypedef struct dns_rdata_ds {
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews dns_rdatacommon_t common;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews isc_mem_t *mctx;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews isc_uint16_t key_tag;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews isc_uint8_t algorithm;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews isc_uint8_t digest_type;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews isc_uint16_t length;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews unsigned char *digest;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews} dns_rdata_ds_t;
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews#endif /* GENERIC_DS_43_H */