in linux/templates.go [53:66]
func DefaultECCEKParameters() *tpm2.ECCParams {
return &tpm2.ECCParams{
CurveID: tpm2.CurveNISTP256,
Point: tpm2.ECPoint{
XRaw: big.NewInt(0).Bytes(),
YRaw: big.NewInt(0).Bytes(),
},
Symmetric: &tpm2.SymScheme{
Alg: tpm2.AlgAES,
KeyBits: 128,
Mode: tpm2.AlgCFB,
},
}
}