summaryrefslogtreecommitdiff
path: root/cmd/fipstest/hmac.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/fipstest/hmac.sh')
-rwxr-xr-xcmd/fipstest/hmac.sh16
1 files changed, 2 insertions, 14 deletions
diff --git a/cmd/fipstest/hmac.sh b/cmd/fipstest/hmac.sh
index d29dbc27f..5f6c21c93 100755
--- a/cmd/fipstest/hmac.sh
+++ b/cmd/fipstest/hmac.sh
@@ -1,8 +1,8 @@
#!/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/.
+
#
# A Bourne shell script for running the NIST HMAC Algorithm Validation Suite
#
@@ -11,26 +11,14 @@
# shared libraries/DLLs are on the search path. Then run this script in the
# directory where the REQUEST (.req) files reside. The script generates the
# RESPONSE (.rsp) files in the same directory.
-
-BASEDIR=${1-.}
-TESTDIR=${BASEDIR}/HMAC
-COMMAND=${2-run}
-REQDIR=${TESTDIR}/req
-RSPDIR=${TESTDIR}/resp
hmac_requests="
HMAC.req
"
-if [ ${COMMAND} = "verify" ]; then
- for request in $hmac_requests; do
- sh ./validate1.sh ${TESTDIR} $request
- done
- exit 0
-fi
for request in $hmac_requests; do
response=`echo $request | sed -e "s/req/rsp/"`
echo $request $response
- fipstest hmac ${REQDIR}/$request > ${RSPDIR}/$response
+ fipstest hmac $request > $response
done