2003-10-01 06:05:00 -04:00
|
|
|
/*
|
2018-02-23 03:53:12 -05:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2003-10-01 06:05:00 -04:00
|
|
|
*
|
2016-06-27 00:56:38 -04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
*
|
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
* information regarding copyright ownership.
|
2003-10-01 06:05:00 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 00:57:32 -04:00
|
|
|
/*!
|
2006-01-06 18:16:00 -05:00
|
|
|
* \brief Per RFC 4255 */
|
2003-10-01 06:05:00 -04:00
|
|
|
|
|
|
|
|
#ifndef GENERIC_SSHFP_44_H
|
|
|
|
|
#define GENERIC_SSHFP_44_H 1
|
|
|
|
|
|
|
|
|
|
typedef struct dns_rdata_sshfp {
|
|
|
|
|
dns_rdatacommon_t common;
|
|
|
|
|
isc_mem_t *mctx;
|
2018-03-28 08:19:37 -04:00
|
|
|
uint8_t algorithm;
|
|
|
|
|
uint8_t digest_type;
|
|
|
|
|
uint16_t length;
|
2003-10-01 06:05:00 -04:00
|
|
|
unsigned char *digest;
|
|
|
|
|
} dns_rdata_sshfp_t;
|
|
|
|
|
|
|
|
|
|
#endif /* GENERIC_SSHFP_44_H */
|