TUN-829: prefer p256 curve

This commit is contained in:
Chung-Ting Huang 2018-07-30 12:44:37 -05:00
parent cefcb79b75
commit f958536aac
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ func (f CLIFlags) finishGettingConfig(c *cli.Context, config *tls.Config) *tls.C
if c.IsSet(f.RootCA) {
config.RootCAs = LoadCert(c.String(f.RootCA))
}
// we optimize CurveP256
config.CurvePreferences = []tls.CurveID{tls.CurveP256}
return config
}