Increase minimum RSA keygen size to 1024 bits (#36895)

This commit is contained in:
Mukund Sivaraman
2017-04-21 11:54:23 +05:30
parent f5c39b072c
commit dd7d1df874
60 changed files with 122 additions and 111 deletions

View File

@@ -569,8 +569,8 @@ fi
n=`expr $n + 1`
echo "I:check 'rndc \"\"' is handled ($n)"
ret=0
$RNDCCMD "" > rndc.out.test$n 2>&1 && ret=1
grep "rndc: '' failed: failure" rndc.out.test$n > /dev/null
$RNDCCMD "" > rndc.output.test$n 2>&1 && ret=1
grep "rndc: '' failed: failure" rndc.output.test$n > /dev/null
if [ $ret != 0 ]; then echo "I:failed"; fi
status=`expr $status + $ret`