From e43ad1f4ce7f1504e6f01fc8a90d5c0398013383 Mon Sep 17 00:00:00 2001 From: Lorry Date: Wed, 18 Jul 2012 20:31:20 +0100 Subject: Tarball conversion --- mozilla/security/nss/cmd/fipstest/sha.sh | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 mozilla/security/nss/cmd/fipstest/sha.sh (limited to 'mozilla/security/nss/cmd/fipstest/sha.sh') diff --git a/mozilla/security/nss/cmd/fipstest/sha.sh b/mozilla/security/nss/cmd/fipstest/sha.sh new file mode 100644 index 0000000..685a41b --- /dev/null +++ b/mozilla/security/nss/cmd/fipstest/sha.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# +# A Bourne shell script for running the NIST SHA Algorithm Validation Suite +# +# Before you run the script, set your PATH, LD_LIBRARY_PATH, ... environment +# variables appropriately so that the fipstest command and the NSPR and NSS +# 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. + +sha_ShortMsg_requests=" +SHA1ShortMsg.req +SHA256ShortMsg.req +SHA384ShortMsg.req +SHA512ShortMsg.req +" + +sha_LongMsg_requests=" +SHA1LongMsg.req +SHA256LongMsg.req +SHA384LongMsg.req +SHA512LongMsg.req +" + +sha_Monte_requests=" +SHA1Monte.req +SHA256Monte.req +SHA384Monte.req +SHA512Monte.req +" +for request in $sha_ShortMsg_requests; do + response=`echo $request | sed -e "s/req/rsp/"` + echo $request $response + fipstest sha $request > $response +done +for request in $sha_LongMsg_requests; do + response=`echo $request | sed -e "s/req/rsp/"` + echo $request $response + fipstest sha $request > $response +done +for request in $sha_Monte_requests; do + response=`echo $request | sed -e "s/req/rsp/"` + echo $request $response + fipstest sha $request > $response +done + -- cgit v1.2.1