COCOS-474 - New aTLS implementation (#475)

* initial new aTLS

* add CA API call for aTLS
This commit is contained in:
Danko Miladinovic
2025-07-08 14:54:57 +02:00
committed by GitHub
parent 9c8ddfd2b1
commit 698bd948ed
19 changed files with 681 additions and 1941 deletions
+2 -2
View File
@@ -99,9 +99,9 @@ func main() {
switch ccPlatform {
case attestation.SNP:
provider = vtpm.NewProvider(nil, false, uint(cfg.Vmpl))
provider = vtpm.NewProvider(false, uint(cfg.Vmpl))
case attestation.SNPvTPM:
provider = vtpm.NewProvider(nil, true, uint(cfg.Vmpl))
provider = vtpm.NewProvider(true, uint(cfg.Vmpl))
case attestation.Azure:
provider = azure.NewProvider()
case attestation.TDX: