mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-03 23:15:28 +00:00
38 lines
889 B
Go
38 lines
889 B
Go
|
package authority
|
||
|
|
||
|
import "github.com/smallstep/certificates/authority/config"
|
||
|
|
||
|
// Config is an alias to support older APIs.
|
||
|
type Config = config.Config
|
||
|
|
||
|
// AuthConfig is an alias to support older APIs.
|
||
|
type AuthConfig = config.AuthConfig
|
||
|
|
||
|
// ASN1DN is an alias to support older APIs.
|
||
|
type ASN1DN = config.ASN1DN
|
||
|
|
||
|
// TLS
|
||
|
|
||
|
// TLSOptions is an alias to support older APIs.
|
||
|
type TLSOptions = config.TLSOptions
|
||
|
|
||
|
// 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
|