5b453e6305
Signed-off-by: Sam Alba <sam.alba@gmail.com>
19 lines
472 B
Go
19 lines
472 B
Go
package auth
|
|
|
|
type Options struct {
|
|
CertDir string
|
|
CaCertPath string
|
|
CaPrivateKeyPath string
|
|
CaCertRemotePath string
|
|
ServerCertPath string
|
|
ServerKeyPath string
|
|
ClientKeyPath string
|
|
ServerCertRemotePath string
|
|
ServerKeyRemotePath string
|
|
ClientCertPath string
|
|
ServerCertSANs []string
|
|
// StorePath is left in for historical reasons, but not really meant to
|
|
// be used directly.
|
|
StorePath string
|
|
}
|