sign.sh revision 4b669b69bae7dedda2faa09a7ade247499c1d49c
#
# Copyright (C) 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
#
# 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/.
SYSTEMTESTTOP=../..
zone=.
zskkeyname=`$KEYGEN -q -r $RANDFILE $zone`
# Configure the resolving server with a managed trusted key.
local ($dn, $class, $type, $flags, $proto, $alg, @rest) = split;
local $key = join("", @rest);
print <<EOF
managed-keys {
"$dn" initial-key $flags $proto $alg "$key";
};
EOF
' > managed.conf
# Configure a trusted key statement (used by delve)
local ($dn, $class, $type, $flags, $proto, $alg, @rest) = split;
local $key = join("", @rest);
print <<EOF
trusted-keys {
"$dn" $flags $proto $alg "$key";
};
EOF
' > trusted.conf
#
# Save keyname and keyid for managed key id test.
#
echo "$keyname" > managed.key
echo "$keyid" > managed.key.id