1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
#!/bin/bash
#
#################################################################################
# #
# TPM2 regression test #
# Written by Ken Goldman #
# IBM Thomas J. Watson Research Center #
# $Id: testhmac.sh 990 2017-04-19 13:31:24Z kgoldman $ #
# #
# (c) Copyright IBM Corporation 2015, 2016 #
# #
# All rights reserved. #
# #
# Redistribution and use in source and binary forms, with or without #
# modification, are permitted provided that the following conditions are #
# met: #
# #
# Redistributions of source code must retain the above copyright notice, #
# this list of conditions and the following disclaimer. #
# #
# Redistributions in binary form must reproduce the above copyright #
# notice, this list of conditions and the following disclaimer in the #
# documentation and/or other materials provided with the distribution. #
# #
# Neither the names of the IBM Corporation nor the names of its #
# contributors may be used to endorse or promote products derived from #
# this software without specific prior written permission. #
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS #
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT #
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR #
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT #
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, #
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT #
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, #
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY #
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT #
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE #
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# #
#################################################################################
echo ""
echo "Keyed hash HMAC key"
echo ""
echo "Start an HMAC auth session"
${PREFIX}startauthsession -se h > run.out
checkSuccess $?
# session 02000000
# loaded HMAC key 80000001
# primary HMAC key 80000001
# sequence object 80000002
for HALG in sha1 sha256 sha384
do
for SESS in "" "-se0 02000000 1"
do
echo "Load the ${HALG} keyed hash key under the primary key"
${PREFIX}load -hp 80000000 -ipr khpriv${HALG}.bin -ipu khpub${HALG}.bin -pwdp pps > run.out
checkSuccess $?
echo "HMAC ${HALG} using the keyed hash key, message from file ${SESS}"
${PREFIX}hmac -hk 80000001 -if msg.bin -os sig.bin -pwdk khk -halg ${HALG} ${SESS} > run.out
checkSuccess $?
echo "HMAC ${HALG} start using the keyed hash key ${SESS}"
${PREFIX}hmacstart -hk 80000001 -pwdk khk -pwda aaa ${SESS} -halg ${HALG} > run.out
checkSuccess $?
echo "HMAC ${HALG} sequence update ${SESS}"
${PREFIX}sequenceupdate -hs 80000002 -pwds aaa -if msg.bin ${SESS} > run.out
checkSuccess $?
echo "HMAC ${HALG} sequence complete ${SESS}"
${PREFIX}sequencecomplete -hs 80000002 -pwds aaa -of tmp.bin ${SESS} > run.out
checkSuccess $?
echo "Verify the HMAC ${HALG} using the two methods"
diff sig.bin tmp.bin
checkSuccess $?
echo "HMAC ${HALG} using the keyed hash key, message from command line ${SESS}"
${PREFIX}hmac -hk 80000001 -ic 1234567890123456 -os sig.bin -pwdk khk -halg ${HALG} ${SESS} > run.out
checkSuccess $?
echo "Verify the HMAC ${HALG} using the two methods"
diff sig.bin tmp.bin
checkSuccess $?
echo "Flush the ${HALG} HMAC key"
${PREFIX}flushcontext -ha 80000001 > run.out
checkSuccess $?
echo "Create primary HMAC key - $HALG"
${PREFIX}createprimary -kh -halg ${HALG} -pwdk khp > run.out
checkSuccess $?
echo "HMAC ${HALG} using the keyed hash primary key ${SESS}"
${PREFIX}hmac -hk 80000001 -if msg.bin -os sig.bin -pwdk khp -halg ${HALG} ${SESS} > run.out
checkSuccess $?
echo "HMAC ${HALG} start using the keyed hash primary key ${SESS}"
${PREFIX}hmacstart -hk 80000001 -pwdk khp -pwda aaa ${SESS} -halg ${HALG} > run.out
checkSuccess $?
echo "HMAC ${HALG} sequence update ${SESS}"
${PREFIX}sequenceupdate -hs 80000002 -pwds aaa -if msg.bin ${SESS} > run.out
checkSuccess $?
echo "HMAC ${HALG} sequence complete ${SESS}"
${PREFIX}sequencecomplete -hs 80000002 -pwds aaa -of tmp.bin ${SESS} > run.out
checkSuccess $?
echo "Verify the HMAC ${HALG} using the two methods"
diff sig.bin tmp.bin
checkSuccess $?
echo "Flush the ${HALG} primary HMAC key"
${PREFIX}flushcontext -ha 80000001 > run.out
checkSuccess $?
done
done
echo ""
echo "Hash"
echo ""
for HALG in sha1 sha256 sha384
do
for SESS in "" "-se0 02000000 1"
do
echo "Hash ${HALG} in one call, data from file"
${PREFIX}hash -hi p -halg ${HALG} -if policies/aaa -oh tmp.bin > run.out
checkSuccess $?
echo "Verify the hash ${HALG}"
diff tmp.bin policies/${HALG}aaa.bin > run.out
checkSuccess $?
echo "Hash ${HALG} in one call, data on command line"
${PREFIX}hash -hi p -halg ${HALG} -ic aaa -oh tmp.bin > run.out
checkSuccess $?
echo "Verify the hash ${HALG}"
diff tmp.bin policies/${HALG}aaa.bin > run.out
checkSuccess $?
echo "Hash ${HALG} sequence start"
${PREFIX}hashsequencestart -halg ${HALG} -pwda aaa > run.out
checkSuccess $?
echo "Hash ${HALG} sequence update ${SESS}"
${PREFIX}sequenceupdate -hs 80000001 -pwds aaa -if policies/aaa ${SESS} > run.out
checkSuccess $?
echo "Hash ${HALG} sequence complete ${SESS}"
${PREFIX}sequencecomplete -hi p -hs 80000001 -pwds aaa -of tmp.bin ${SESS} > run.out
checkSuccess $?
echo "Verify the ${HALG} hash"
diff tmp.bin policies/${HALG}aaa.bin > run.out
checkSuccess $?
done
done
echo "Flush the auth session"
${PREFIX}flushcontext -ha 02000000 > run.out
checkSuccess $?
# ${PREFIX}getcapability -cap 1 -pr 80000000
# ${PREFIX}getcapability -cap 1 -pr 02000000
echo ""
echo "Sign with ticket"
echo ""
echo "Load the signing key under the primary key"
${PREFIX}load -hp 80000000 -ipr signrpriv.bin -ipu signrpub.bin -pwdp pps > run.out
checkSuccess $?
echo "Hash and create ticket"
${PREFIX}hash -hi p -halg sha256 -if msg.bin -oh sig.bin -tk tkt.bin > run.out
checkSuccess $?
echo "Sign a digest with a restricted signing key and no ticket - should fail"
${PREFIX}sign -hk 80000001 -halg sha256 -if msg.bin -os sig.bin -pwdk sig > run.out
checkFailure $?
echo "Sign a digest with a restricted signing key and ticket"
${PREFIX}sign -hk 80000001 -halg sha256 -if msg.bin -tk tkt.bin -os sig.bin -pwdk sig > run.out
checkSuccess $?
echo "Hash and create null ticket, msg with TPM_GENERATED"
${PREFIX}hash -hi p -halg sha256 -if policies/msgtpmgen.bin -oh sig.bin -tk tkt.bin > run.out
checkSuccess $?
echo "Sign a digest with a restricted signing key and ticket - should fail"
${PREFIX}sign -hk 80000001 -halg $HALG -if msg.bin -tk tkt.bin -os sig.bin -pwdk sig > run.out
checkFailure $?
echo "Hash sequence start"
${PREFIX}hashsequencestart -halg sha256 -pwda aaa > run.out
checkSuccess $?
echo "Hash sequence update "
${PREFIX}sequenceupdate -hs 80000002 -pwds aaa -if msg.bin > run.out
checkSuccess $?
echo "Hash sequence complete"
${PREFIX}sequencecomplete -hi p -hs 80000002 -pwds aaa -of tmp.bin -tk tkt.bin > run.out
checkSuccess $?
echo "Sign a digest with a restricted signing key and no ticket - should fail"
${PREFIX}sign -hk 80000001 -halg sha256 -if msg.bin -os sig.bin -pwdk sig > run.out
checkFailure $?
echo "Sign a digest with a restricted signing key and ticket"
${PREFIX}sign -hk 80000001 -halg sha256 -if msg.bin -tk tkt.bin -os sig.bin -pwdk sig > run.out
checkSuccess $?
echo "Hash sequence start"
${PREFIX}hashsequencestart -halg sha256 -pwda aaa -halg sha256 > run.out
checkSuccess $?
echo "Hash sequence update, msg with TPM_GENERATED"
${PREFIX}sequenceupdate -hs 80000002 -pwds aaa -if policies/msgtpmgen.bin > run.out
checkSuccess $?
echo "Hash sequence complete"
${PREFIX}sequencecomplete -hi p -hs 80000002 -pwds aaa -of tmp.bin -tk tkt.bin > run.out
checkSuccess $?
echo "Sign a digest with a restricted signing key and ticket - should fail"
${PREFIX}sign -hk 80000001 -halg $HALG -if msg.bin -tk tkt.bin -os sig.bin -pwdk sig > run.out
checkFailure $?
echo "Flush the signing key"
${PREFIX}flushcontext -ha 80000001 > run.out
checkSuccess $?
rm -f tmp.bin
rm -f tmp1.bin
# ${PREFIX}getcapability -cap 1 -pr 80000000
# ${PREFIX}getcapability -cap 1 -pr 02000000
|