2021-05-20 20:01:58 +00:00
|
|
|
package authority
|
|
|
|
|
|
|
|
import "github.com/smallstep/certificates/authority/config"
|
|
|
|
|
|
|
|
// Config is an alias to support older APIs.
|
|
|
|
type Config = config.Config
|
|
|
|
|
2021-05-03 19:48:20 +00:00
|
|
|
// LoadConfiguration is an alias to support older APIs.
|
|
|
|
var LoadConfiguration = config.LoadConfiguration
|
|
|
|
|
2021-05-20 20:01:58 +00:00
|
|
|
// AuthConfig is an alias to support older APIs.
|
|
|
|
type AuthConfig = config.AuthConfig
|
|
|
|
|
2021-05-03 19:48:20 +00:00
|
|
|
// TLS
|
|
|
|
|
2021-05-20 20:01:58 +00:00
|
|
|
// ASN1DN is an alias to support older APIs.
|
|
|
|
type ASN1DN = config.ASN1DN
|
|
|
|
|
2021-05-03 19:48:20 +00:00
|
|
|
// DefaultTLSOptions is an alias to support older APIs.
|
|
|
|
var DefaultTLSOptions = config.DefaultTLSOptions
|
2021-05-20 20:01:58 +00:00
|
|
|
|
|
|
|
// TLSOptions is an alias to support older APIs.
|
|
|
|
type TLSOptions = config.TLSOptions
|
|
|
|
|
2021-05-03 19:48:20 +00:00
|
|
|
// CipherSuites is an alias to support older APIs.
|
|
|
|
type CipherSuites = config.CipherSuites
|
|
|
|
|
2021-05-20 20:01:58 +00:00
|
|
|
// 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
|