2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-03-26 14:01:08 +00:00
|
|
|
|
2023-10-18 01:21:28 +00:00
|
|
|
//go:build !windows
|
2021-03-26 14:01:08 +00:00
|
|
|
|
|
|
|
package controlclient
|
|
|
|
|
|
|
|
import (
|
|
|
|
"tailscale.com/tailcfg"
|
2021-09-03 20:17:46 +00:00
|
|
|
"tailscale.com/types/key"
|
2021-03-26 14:01:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// signRegisterRequest on non-supported platforms always returns errNoCertStore.
|
2021-09-03 20:17:46 +00:00
|
|
|
func signRegisterRequest(req *tailcfg.RegisterRequest, serverURL string, serverPubKey, machinePubKey key.MachinePublic) error {
|
2021-03-26 14:01:08 +00:00
|
|
|
return errNoCertStore
|
|
|
|
}
|