diff --git a/backend/socket_test.go b/backend/socket_test.go index 87f43b2..c529b33 100644 --- a/backend/socket_test.go +++ b/backend/socket_test.go @@ -5,7 +5,7 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - . "github.com/rancher-sandbox/go-tpm/backend" + . "github.com/kairos-io/go-tpm/backend" ) var _ = Describe("SWTPM", func() { diff --git a/get_test.go b/get_test.go index 8541c72..bf7bc5e 100644 --- a/get_test.go +++ b/get_test.go @@ -12,7 +12,7 @@ import ( "github.com/gorilla/websocket" . "github.com/onsi/ginkgo/v2" . "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) { diff --git a/go.mod b/go.mod index 9eb96c6..d2cd94a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/rancher-sandbox/go-tpm +module github.com/kairos-io/go-tpm go 1.17 diff --git a/tpm.go b/tpm.go index 81a3527..f516eb2 100644 --- a/tpm.go +++ b/tpm.go @@ -14,7 +14,7 @@ import ( "github.com/google/go-attestation/attest" "github.com/google/go-tpm-tools/simulator" "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 diff --git a/tpm_test.go b/tpm_test.go index 20af075..ffd9fdd 100644 --- a/tpm_test.go +++ b/tpm_test.go @@ -5,8 +5,8 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - . "github.com/rancher-sandbox/go-tpm" - . "github.com/rancher-sandbox/go-tpm/backend" + . "github.com/kairos-io/go-tpm" + . "github.com/kairos-io/go-tpm/backend" ) var _ = Describe("Simulated TPM", func() {