mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 17:31:55 +08:00
10 lines
188 B
Go
10 lines
188 B
Go
package ssh
|
|
|
|
type OutputFormatType string
|
|
|
|
const (
|
|
OUTPUT_FORMAT_PEM = OutputFormatType("PEM")
|
|
OUTPUT_FORMAT_PFX = OutputFormatType("PFX")
|
|
OUTPUT_FORMAT_JKS = OutputFormatType("JKS")
|
|
)
|