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