Home | History | Annotate | Line # | Download | only in checkconf_keys
      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 
     14 key-store "ksk" {
     15 	directory "ksk";
     16 };
     17 
     18 key-store "zsk" {
     19 	directory "zsk";
     20 };
     21 
     22 dnssec-policy "keystores-kz" {
     23 	keys {
     24 		ksk key-store "ksk" lifetime unlimited algorithm ECDSAP256SHA256;
     25 		zsk key-store "zsk" lifetime unlimited algorithm ECDSAP256SHA256;
     26 	};
     27 };
     28 
     29 zone "bad-keystores.kz.example" {
     30 	type primary;
     31 	file "bad-keystores.kz.example.db";
     32 	dnssec-policy "keystores-kz";
     33 };
     34