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.
|
|
|
|
|
2021-08-05 22:42:39 +00:00
|
|
|
//go:build !windows || !cgo
|
2021-03-26 14:01:08 +00:00
|
|
|
// +build !windows !cgo
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|