Sha256: af227715003c81461a87df56eae9b217172b8972739d50fa468157674842a59f

Contents?: true

Size: 1.96 KB

Versions: 2

Compression:

Stored size: 1.96 KB

Contents

#!/bin/sh
#
# This script needs to be called from testrun.sh script
#

##########################################################################
##########################################################################
##########################################################################
echo "--- testKeys started for xmlsec-$crypto library ($timestamp) ---"
echo "--- LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
echo "--- log file is $logfile"
echo "--- testKeys started for xmlsec-$crypto library ($timestamp) ---" >> $logfile
echo "--- LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $logfile

# cleanup crypto config folder
mkdir -p $crypto_config
rm -rf $crypto_config/*

# remove old keys file and copy NSS DB files if needed
rm -rf $keysfile
if [ "z$crypto" = "znss" ] ; then
    cp -f $nssdbfolder/*.db $crypto_config
fi

##########################################################################
##########################################################################
##########################################################################
echo "--------- Positive Testing ----------"
execKeysTest $res_success \
    "hmac" \
    "test-hmac-sha1" \
    "hmac-192"

execKeysTest $res_success \
    "rsa " \
    "test-rsa      " \
    "rsa-1024"

execKeysTest $res_success \
    "dsa " \
    "test-dsa      " \
    "dsa-1024"

execKeysTest $res_success \
    "des " \
    "test-des      " \
    "des-192 "

execKeysTest $res_success \
    "aes " \
    "test-aes128   " \
    "aes-128 "

execKeysTest $res_success \
    "aes " \
    "test-aes192   " \
    "aes-192 "

execKeysTest $res_success \
    "aes " \
    "test-aes256   " \
    "aes-256 "

##########################################################################
##########################################################################
##########################################################################
echo "--- testKeys finished ---" >> $logfile
echo "--- testKeys finished ---"
echo "--- detailed log is written to  $logfile ---"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
xmlsec-shim-1.2.18.2 vendor/xmlsec1-1.2.18/tests/testKeys.sh
xmlsec-shim-1.2.18.1 vendor/xmlsec1-1.2.18/tests/testKeys.sh