Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewHostCertResource ¶
func NewUserCertResource ¶
Types ¶
type ECDSACurve ¶
type ECDSACurve string
ECDSACurve represents a type of ECDSA elliptic curve.
const ( P224 ECDSACurve = "P224" P256 ECDSACurve = "P256" P384 ECDSACurve = "P384" P521 ECDSACurve = "P521" )
func (ECDSACurve) String ¶
func (e ECDSACurve) String() string
type PEMPreamble ¶
type PEMPreamble string
PEMPreamble represents the heading used in a PEM-formatted for the "encapsulation boundaries", that is used to delimit the "encapsulated text portion" of cryptographic documents.
See https://datatracker.ietf.org/doc/html/rfc1421 and https://datatracker.ietf.org/doc/html/rfc7468.
const ( PreamblePublicKey PEMPreamble = "PUBLIC KEY" PreamblePrivateKeyPKCS8 PEMPreamble = "PRIVATE KEY" PreamblePrivateKeyRSA PEMPreamble = "RSA PRIVATE KEY" PreamblePrivateKeyEC PEMPreamble = "EC PRIVATE KEY" PreamblePrivateKeyOpenSSH PEMPreamble = "OPENSSH PRIVATE KEY" PreambleCertificate PEMPreamble = "CERTIFICATE" PreambleCertificateRequest PEMPreamble = "CERTIFICATE REQUEST" )
func (PEMPreamble) String ¶
func (p PEMPreamble) String() string
type ProxyScheme ¶
type ProxyScheme string
ProxyScheme represents url schemes supported when providing proxy configuration to this provider.
const ( HTTPProxy ProxyScheme = "http" HTTPSProxy ProxyScheme = "https" SOCKS5Proxy ProxyScheme = "socks5" )
func (ProxyScheme) String ¶
func (p ProxyScheme) String() string
Source Files
¶
Click to show internal directories.
Click to hide internal directories.