mirror of
https://github.com/tailscale/tailscale.git
synced 2025-08-23 03:17:43 +00:00
feature/tpm: implement ipn.StateStore using TPM sealing (#16030)
Updates #15830 Signed-off-by: Andrew Lytvynov <awly@tailscale.com>
This commit is contained in:
@@ -5,8 +5,12 @@
|
||||
|
||||
package tpm
|
||||
|
||||
import "tailscale.com/tailcfg"
|
||||
import (
|
||||
"errors"
|
||||
|
||||
func info() *tailcfg.TPMInfo {
|
||||
return nil
|
||||
"github.com/google/go-tpm/tpm2/transport"
|
||||
)
|
||||
|
||||
func open() (transport.TPMCloser, error) {
|
||||
return nil, errors.New("TPM not supported on this platform")
|
||||
}
|
||||
|
Reference in New Issue
Block a user