tailscale/feature/tpm/tpm_other.go
Andrew Lytvynov 4979ce7a94
feature/tpm: implement ipn.StateStore using TPM sealing (#16030)
Updates #15830

Signed-off-by: Andrew Lytvynov <awly@tailscale.com>
2025-06-18 14:17:12 -07:00

17 lines
300 B
Go

// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:build !linux && !windows
package tpm
import (
"errors"
"github.com/google/go-tpm/tpm2/transport"
)
func open() (transport.TPMCloser, error) {
return nil, errors.New("TPM not supported on this platform")
}