[BACK]Return to sign.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / bin / tests / system / chain / ns2

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/external/mpl/bind/dist/bin/tests/system/chain/ns2/sign.sh between version 1.1.1.6 and 1.1.1.7

version 1.1.1.6, 2022/09/23 12:09:10 version 1.1.1.7, 2023/01/25 20:36:37
Line 18  zone=example.
Line 18  zone=example.
 zonefile=example.db  zonefile=example.db
 signedfile=example.db.signed  signedfile=example.db.signed
   
 ksk=`$KEYGEN -q -a RSASHA256 -b 2048 -fk $zone`  ksk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} -fk $zone)
 zsk=`$KEYGEN -q -a RSASHA256 -b 1024 $zone`  zsk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} $zone)
 $SIGNER -S -o $zone -f $signedfile $zonefile > /dev/null  $SIGNER -S -o $zone -f $signedfile $zonefile > /dev/null
   
 zone=wildcard-secure.example.  zone=wildcard-secure.example.
 zonefile=wildcard-secure.db  zonefile=wildcard-secure.db
 signedfile=wildcard-secure.example.db.signed  signedfile=wildcard-secure.example.db.signed
   
 ksk=`$KEYGEN -q -a RSASHA256 -b 2048 -fk $zone`  ksk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} -fk $zone)
 zsk=`$KEYGEN -q -a RSASHA256 -b 1024 $zone`  zsk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} $zone)
 $SIGNER -S -o $zone -f $signedfile $zonefile > /dev/null  $SIGNER -S -o $zone -f $signedfile $zonefile > /dev/null
   
 zone=wildcard-nsec.example.  zone=wildcard-nsec.example.
 zonefile=wildcard.db  zonefile=wildcard.db
 signedfile=wildcard-nsec.example.db.signed  signedfile=wildcard-nsec.example.db.signed
   
 ksk=`$KEYGEN -q -a RSASHA256 -b 2048 -fk $zone`  ksk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} -fk $zone)
 zsk=`$KEYGEN -q -a RSASHA256 -b 1024 $zone`  zsk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} $zone)
 $SIGNER -S -o $zone -f $signedfile $zonefile > /dev/null  $SIGNER -S -o $zone -f $signedfile $zonefile > /dev/null
   
 zone=wildcard-nsec3.example.  zone=wildcard-nsec3.example.
 zonefile=wildcard.db  zonefile=wildcard.db
 signedfile=wildcard-nsec3.example.db.signed  signedfile=wildcard-nsec3.example.db.signed
   
 ksk=`$KEYGEN -q -a RSASHA256 -b 2048 -fk $zone`  ksk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} -fk $zone)
 zsk=`$KEYGEN -q -a RSASHA256 -b 1024 $zone`  zsk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} $zone)
 $SIGNER -S -3 - -H 0 -o $zone -f $signedfile $zonefile > /dev/null  $SIGNER -S -3 - -H 0 -o $zone -f $signedfile $zonefile > /dev/null
   
 zone=wildcard-nsec3-optout.example.  zone=wildcard-nsec3-optout.example.
 zonefile=wildcard.db  zonefile=wildcard.db
 signedfile=wildcard-nsec3-optout.example.db.signed  signedfile=wildcard-nsec3-optout.example.db.signed
   
 ksk=`$KEYGEN -q -a RSASHA256 -b 2048 -fk $zone`  ksk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} -fk $zone)
 zsk=`$KEYGEN -q -a RSASHA256 -b 1024 $zone`  zsk=$($KEYGEN -q -a ${DEFAULT_ALGORITHM} -b ${DEFAULT_BITS} $zone)
 $SIGNER -S -3 - -H 0 -A -o $zone -f $signedfile $zonefile > /dev/null  $SIGNER -S -3 - -H 0 -A -o $zone -f $signedfile $zonefile > /dev/null

Legend:
Removed from v.1.1.1.6  
changed lines
  Added in v.1.1.1.7

CVSweb <webmaster@jp.NetBSD.org>