diff options
author | Robert Relyea <rrelyea@redhat.com> | 2015-08-31 14:34:18 -0700 |
---|---|---|
committer | Robert Relyea <rrelyea@redhat.com> | 2015-08-31 14:34:18 -0700 |
commit | 7adc9ed826ee4e1a5174b4b1d3f1f2ebf381ffb2 (patch) | |
tree | eb018f83be021da1799d6c492617959538d0230c /cmd/fipstest/validate1.sh | |
parent | 5aeac8e0722ed2a5fd9cbb849579fbb70dfeebc3 (diff) | |
download | nss-hg-7adc9ed826ee4e1a5174b4b1d3f1f2ebf381ffb2.tar.gz |
Pick up FIPS-140 certification work.
This consists of the following:
1)Move FIPS integrity and post tests to dll load time.
2) Extra data clearing of CPS, change to the prime check requirements.
3) Allow FIPS level 1. This is detected by whether or not there is a password on the database.
4) Update fipstest to handle new tests and the latest formats used by NIST. Also make running of the tests automated.
bob
Diffstat (limited to 'cmd/fipstest/validate1.sh')
-rw-r--r-- | cmd/fipstest/validate1.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cmd/fipstest/validate1.sh b/cmd/fipstest/validate1.sh new file mode 100644 index 000000000..1440af8fc --- /dev/null +++ b/cmd/fipstest/validate1.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# +# 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/. +# +# Validate1.sh is a helper shell script that each of the base test shell +# scripts call to help validate that the generated response (response) +# matches the known answer response (fax). Sometimes (depending on the +# individual tests) there are extraneous output in either or both response +# and fax files. These allow the caller to pass in additional sed commands +# to clear out those extraneous outputs before we compare the two files. +# The sed line always clears out Windows line endings, replaces tabs with +# spaces, and removed comments. +# +TESTDIR=${1-.} +request=${2} +extraneous_response=${3} +extraneous_fax=${4} +name=`basename $request .req` +echo ">>>>> $name" +sed -e 's;
;;g' -e 's; ; ;g' -e '/^#/d' $extraneous_response ${TESTDIR}/resp/${name}.rsp > /tmp/y1 +# if we didn't generate any output, flag that as an error +size=`sum /tmp/y1 | awk '{ print $NF }'` +if [ $size -eq 0 ]; then + echo "${TESTDIR}/resp/${name}.rsp: empty" + exit 1; +fi +sed -e 's;
;;g' -e 's; ; ;g' -e '/^#/d' $extraneous_fax ${TESTDIR}/fax/${name}.fax > /tmp/y2 +diff -i -w -B /tmp/y1 /tmp/y2 |