mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-10-31 13:05:22 +00:00 
			
		
		
		
	cmd/derper: use new node key type.
Updates #3206 Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
		 David Anderson
					David Anderson
				
			
				
					committed by
					
						 Dave Anderson
						Dave Anderson
					
				
			
			
				
	
			
			
			 Dave Anderson
						Dave Anderson
					
				
			
						parent
						
							bc89a796ec
						
					
				
				
					commit
					a47158e14d
				
			| @@ -31,7 +31,6 @@ import ( | ||||
| 	"tailscale.com/net/stun" | ||||
| 	"tailscale.com/tsweb" | ||||
| 	"tailscale.com/types/key" | ||||
| 	"tailscale.com/types/wgkey" | ||||
| ) | ||||
|  | ||||
| var ( | ||||
| @@ -70,12 +69,12 @@ func init() { | ||||
| } | ||||
|  | ||||
| type config struct { | ||||
| 	PrivateKey wgkey.Private | ||||
| 	PrivateKey key.NodePrivate | ||||
| } | ||||
|  | ||||
| func loadConfig() config { | ||||
| 	if *dev { | ||||
| 		return config{PrivateKey: mustNewKey()} | ||||
| 		return config{PrivateKey: key.NewNode()} | ||||
| 	} | ||||
| 	if *configPath == "" { | ||||
| 		if os.Getuid() == 0 { | ||||
| @@ -101,21 +100,13 @@ func loadConfig() config { | ||||
| 	} | ||||
| } | ||||
|  | ||||
| func mustNewKey() wgkey.Private { | ||||
| 	key, err := wgkey.NewPrivate() | ||||
| 	if err != nil { | ||||
| 		log.Fatal(err) | ||||
| 	} | ||||
| 	return key | ||||
| } | ||||
|  | ||||
| func writeNewConfig() config { | ||||
| 	key := mustNewKey() | ||||
| 	k := key.NewNode() | ||||
| 	if err := os.MkdirAll(filepath.Dir(*configPath), 0777); err != nil { | ||||
| 		log.Fatal(err) | ||||
| 	} | ||||
| 	cfg := config{ | ||||
| 		PrivateKey: key, | ||||
| 		PrivateKey: k, | ||||
| 	} | ||||
| 	b, err := json.MarshalIndent(cfg, "", "\t") | ||||
| 	if err != nil { | ||||
| @@ -152,7 +143,7 @@ func main() { | ||||
|  | ||||
| 	serveTLS := tsweb.IsProd443(*addr) | ||||
|  | ||||
| 	s := derp.NewServer(key.Private(cfg.PrivateKey), log.Printf) | ||||
| 	s := derp.NewServer(cfg.PrivateKey.AsPrivate(), log.Printf) | ||||
| 	s.SetVerifyClient(*verifyClients) | ||||
|  | ||||
| 	if *meshPSKFile != "" { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user