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
|
package tpm2test
import (
"errors"
"testing"
. "github.com/google/go-tpm/tpm2"
"github.com/google/go-tpm/tpm2/transport/simulator"
)
func TestTestParms(t *testing.T) {
thetpm, err := simulator.OpenSimulator()
if err != nil {
t.Fatalf("could not connect to TPM simulator: %v", err)
}
defer thetpm.Close()
for _, tt := range []struct {
name string
parms TPMTPublicParms
wantErr error
}{
{
"p256",
TPMTPublicParms{
Type: TPMAlgECC,
Parameters: NewTPMUPublicParms(
TPMAlgECC,
&TPMSECCParms{
CurveID: TPMECCNistP256,
},
),
},
nil,
},
{
"p364",
TPMTPublicParms{
Type: TPMAlgECC,
Parameters: NewTPMUPublicParms(
TPMAlgECC,
&TPMSECCParms{
CurveID: TPMECCNistP384,
},
),
},
nil,
},
{
"p521",
TPMTPublicParms{
Type: TPMAlgECC,
Parameters: NewTPMUPublicParms(
TPMAlgECC,
&TPMSECCParms{
CurveID: TPMECCNistP521,
},
),
},
nil,
},
{
"rsa2048",
TPMTPublicParms{
Type: TPMAlgRSA,
Parameters: NewTPMUPublicParms(
TPMAlgRSA,
&TPMSRSAParms{
KeyBits: 2048,
},
),
},
nil,
},
{
"rsa3072 - unsupported",
TPMTPublicParms{
Type: TPMAlgRSA,
Parameters: NewTPMUPublicParms(
TPMAlgRSA,
&TPMSRSAParms{
KeyBits: 3072,
},
),
},
TPMRCValue,
},
{
"rsa4096 - unsupported",
TPMTPublicParms{
Type: TPMAlgRSA,
Parameters: NewTPMUPublicParms(
TPMAlgRSA,
&TPMSRSAParms{
KeyBits: 4096,
},
),
},
TPMRCValue,
},
} {
t.Run(tt.name, func(t *testing.T) {
grc := TestParms{Parameters: tt.parms}
_, err := grc.Execute(thetpm)
if !errors.Is(err, tt.wantErr) {
t.Fatalf("TestParms failed failed. Expecting err %v got %v", tt.wantErr, err)
}
})
}
}
|