-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.go
49 lines (44 loc) · 1.37 KB
/
defaults.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package main
import (
"time"
"github.com/cloudflare/cfssl/config"
)
var defaultConfig = config.DefaultConfig()
// DefaultServerConfig is the default signing config for server certs.
// It takes defaults from https://github.com/cloudflare/cfssl/blob/master/cli/printdefault/defaults.go
func DefaultServerConfig() config.Config {
return config.Config{
Signing: &config.Signing{
Default: &config.SigningProfile{
Expiry: 168 * time.Hour,
ExpiryString: "168h",
},
Profiles: map[string]*config.SigningProfile{
"www": &config.SigningProfile{
Expiry: defaultConfig.Expiry,
ExpiryString: defaultConfig.ExpiryString,
Usage: []string{"signing", "key encipherment", "server auth"},
},
},
},
}
}
// DefaultClientConfig is the default signing config for client certs.
// It takes defaults from https://github.com/cloudflare/cfssl/blob/master/cli/printdefault/defaults.go
func DefaultClientConfig() config.Config {
return config.Config{
Signing: &config.Signing{
Default: &config.SigningProfile{
Expiry: 168 * time.Hour,
ExpiryString: "168h",
},
Profiles: map[string]*config.SigningProfile{
"client": &config.SigningProfile{
Expiry: defaultConfig.Expiry,
ExpiryString: defaultConfig.ExpiryString,
Usage: []string{"signing", "key encipherment", "client auth"},
},
},
},
}
}