Rename repository

This commit is contained in:
mudler
2022-10-07 23:53:23 +02:00
parent fef86f595b
commit 700d855876
5 changed files with 6 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ import (
. "github.com/onsi/ginkgo/v2" . "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
. "github.com/rancher-sandbox/go-tpm/backend" . "github.com/kairos-io/go-tpm/backend"
) )
var _ = Describe("SWTPM", func() { var _ = Describe("SWTPM", func() {

View File

@@ -12,7 +12,7 @@ import (
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
. "github.com/onsi/ginkgo/v2" . "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
. "github.com/rancher-sandbox/go-tpm" . "github.com/kairos-io/go-tpm"
) )
func writeRead(conn *websocket.Conn, input []byte) ([]byte, error) { func writeRead(conn *websocket.Conn, input []byte) ([]byte, error) {

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/rancher-sandbox/go-tpm module github.com/kairos-io/go-tpm
go 1.17 go 1.17

2
tpm.go
View File

@@ -14,7 +14,7 @@ import (
"github.com/google/go-attestation/attest" "github.com/google/go-attestation/attest"
"github.com/google/go-tpm-tools/simulator" "github.com/google/go-tpm-tools/simulator"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/rancher-sandbox/go-tpm/backend" "github.com/kairos-io/go-tpm/backend"
) )
// GenerateChallenge generates a challenge from attestation data and a public endorsed key // GenerateChallenge generates a challenge from attestation data and a public endorsed key

View File

@@ -5,8 +5,8 @@ import (
. "github.com/onsi/ginkgo/v2" . "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
. "github.com/rancher-sandbox/go-tpm" . "github.com/kairos-io/go-tpm"
. "github.com/rancher-sandbox/go-tpm/backend" . "github.com/kairos-io/go-tpm/backend"
) )
var _ = Describe("Simulated TPM", func() { var _ = Describe("Simulated TPM", func() {