forked from smallstep/certificates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
46 lines (30 loc) · 1.17 KB
/
config.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
package authority
import "github.com/smallstep/certificates/authority/config"
// Config is an alias to support older APIs.
type Config = config.Config
// LoadConfiguration is an alias to support older APIs.
var LoadConfiguration = config.LoadConfiguration
// AuthConfig is an alias to support older APIs.
type AuthConfig = config.AuthConfig
// TLS
// ASN1DN is an alias to support older APIs.
type ASN1DN = config.ASN1DN
// DefaultTLSOptions is an alias to support older APIs.
var DefaultTLSOptions = config.DefaultTLSOptions
// TLSOptions is an alias to support older APIs.
type TLSOptions = config.TLSOptions
// CipherSuites is an alias to support older APIs.
type CipherSuites = config.CipherSuites
// SSH
// SSHConfig is an alias to support older APIs.
type SSHConfig = config.SSHConfig
// Bastion is an alias to support older APIs.
type Bastion = config.Bastion
// HostTag is an alias to support older APIs.
type HostTag = config.HostTag
// Host is an alias to support older APIs.
type Host = config.Host
// SSHPublicKey is an alias to support older APIs.
type SSHPublicKey = config.SSHPublicKey
// SSHKeys is an alias to support older APIs.
type SSHKeys = config.SSHKeys