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
|
#;**********************************************************************;
#
# Copyright (c) 2016, Intel Corporation
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. 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.
#
# 3. Neither the name of Intel 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.
#;**********************************************************************;
#!/bin/bash
new_path=`pwd`
PATH="$PATH":"$new_path"
alg_primary_obj=0x000B
alg_primary_key=0x0001
alg_create_obj=0x000B
alg_create_key=0x0008
halg=0x000B
handle_hmac_key=0x81010013
file_primary_key_ctx=context.p_"$alg_primary_obj"_"$alg_primary_key"
file_hmac_key_pub=opu_"$alg_create_obj"_"$alg_create_key"
file_hmac_key_priv=opr_"$alg_create_obj"_"$alg_create_key"
file_hmac_key_name=name.load_"$alg_primary_obj"_"$alg_primary_key"-"$alg_create_obj"_"$alg_create_key"
file_hmac_key_ctx=ctx_load_out_"$alg_primary_obj"_"$alg_primary_key"-"$alg_create_obj"_"$alg_create_key"
file_hmac_output=hmac_"$file_hmac_key_ctx"
file_input_data=secret.data
fail()
{
echo "$1 test fail, please check the environment or parameters!"
exit 1
}
Pass()
{
echo ""$1" pass" >>test_getpubak_pass.log
}
rm $file_primary_key_ctx $file_hmac_key_pub $file_hmac_key_priv $file_hmac_key_name $file_hmac_key_ctx $file_hmac_output -rf
if [ ! -e "$file_input_data" ]
then
echo "12345678" > $file_input_data
fi
tpm2_takeownership -c
tpm2_createprimary -A e -g $alg_primary_obj -G $alg_primary_key -C $file_primary_key_ctx
if [ $? != 0 ];then
fail createprimary
fi
tpm2_create -g $alg_create_obj -G $alg_create_key -o $file_hmac_key_pub -O $file_hmac_key_priv -c $file_primary_key_ctx
if [ $? != 0 ];then
fail create
fi
tpm2_load -c $file_primary_key_ctx -u $file_hmac_key_pub -r $file_hmac_key_priv -n $file_hmac_key_name -C $file_hmac_key_ctx
if [ $? != 0 ];then
fail load
fi
tpm2_hmac -c $file_hmac_key_ctx -g $halg -I $file_input_data -o $file_hmac_output
if [ $? != 0 ];then
fail hmac
fi
####handle test
rm -f $file_hmac_output
tpm2_evictcontrol -A o -c $file_hmac_key_ctx -S $handle_hmac_key |tee evict.log
c1="$?"
grep "persistentHanlde: "$handle_hmac_key"" evict.log
c2="$?"
if [ $c1 != 0 ] || [ $c2 != 0 ];then
fail evict
fi
tpm2_hmac -k $handle_hmac_key -g $halg -I $file_input_data -o $file_hmac_output
if [ $? != 0 ];then
fail hmac
fi
|