1/*
2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0.  If a copy of the MPL was not distributed with this
8 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9 *
10 * See the COPYRIGHT file distributed with this work for additional
11 * information regarding copyright ownership.
12 */
13
14include "policies/kasp-fips.conf";
15
16dnssec-policy "rsasha1" {
17	dnskey-ttl 1234;
18
19	keys {
20		ksk key-directory lifetime P10Y algorithm 5;
21		zsk key-directory lifetime P5Y  algorithm 5;
22		zsk key-directory lifetime P1Y  algorithm 5 2000;
23	};
24};
25
26dnssec-policy "rsasha1-nsec3" {
27	dnskey-ttl 1234;
28
29	keys {
30		ksk key-directory lifetime P10Y algorithm 7;
31		zsk key-directory lifetime P5Y  algorithm 7;
32		zsk key-directory lifetime P1Y  algorithm 7 2000;
33	};
34};
35