2021-03-26 14:01:08 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-03-16 22:47:15 +00:00
|
|
|
//go:build !windows || !cgo
|
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
|
|
|
|
}
|