1<?php
2
3/**
4 * DNS Library for handling lookups and updates.
5 *
6 * Copyright (c) 2020, Mike Pultz <mike@mikepultz.com>. All rights reserved.
7 *
8 * See LICENSE for more details.
9 *
10 * @category  Networking
11 * @package   Net_DNS2
12 * @author    Mike Pultz <mike@mikepultz.com>
13 * @copyright 2020 Mike Pultz <mike@mikepultz.com>
14 * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
15 * @link      https://netdns2.com/
16 * @since     File available since Release 1.4.0
17 *
18 */
19
20/**
21 * The CDNSKEY RR is implemented exactly like the DNSKEY record, so
22 * for now we just extend the DNSKEY RR and use it.
23 *
24 * http://www.rfc-editor.org/rfc/rfc7344.txt
25 *
26 */
27class Net_DNS2_RR_CDNSKEY extends Net_DNS2_RR_DNSKEY
28{
29}
30