cert

package
v0.0.0-...-2db71d7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 27, 2021 License: Apache-2.0 Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ComputeSKI

func ComputeSKI(hashType crypto.HashType, pub interface{}) ([]byte, error)

func CreateCACertificate

func CreateCACertificate(cfg *CACertificateConfig) error

CreateCACertificate - create ca cert file

func CreateCSR

func CreateCSR(cfg *CSRConfig) error

func CreatePrivKey

func CreatePrivKey(keyType crypto.KeyType, privKeyPath, privKeyFileName string) (crypto.PrivateKey, error)

CreatePrivKey - create private key file

func GenerateCSRTemplate

func GenerateCSRTemplate(privKey crypto.PrivateKey,
	country, locality, province, organizationalUnit, organization, commonName string) (*x509.CertificateRequest, error)

func GenerateCertTemplate

func GenerateCertTemplate(cfg *GenerateCertTemplateConfig) (*x509.Certificate, error)

func IssueCertificate

func IssueCertificate(cfg *IssueCertificateConfig) error

IssueCertificate - issue certification

func ParseCertificate

func ParseCertificate(certFilePath string) (*x509.Certificate, error)

ParseCertificate - parse certification

func ParseCertificateRequest

func ParseCertificateRequest(csrFilePath string) (*x509.CertificateRequest, error)

ParseCertificateRequest - parse certification request

func ParseCertificateToJson

func ParseCertificateToJson(certFilePath string) (string, error)

Types

type CACertificateConfig

type CACertificateConfig struct {
	PrivKey            crypto.PrivateKey
	HashType           crypto.HashType
	CertPath           string
	CertFileName       string
	Country            string
	Locality           string
	Province           string
	OrganizationalUnit string
	Organization       string
	CommonName         string
	ExpireYear         int32
	Sans               []string
}

CACertificateConfig contains necessary parameters for creating private key.

type CSRConfig

type CSRConfig struct {
	PrivKey            crypto.PrivateKey
	CsrPath            string
	CsrFileName        string
	Country            string
	Locality           string
	Province           string
	OrganizationalUnit string
	Organization       string
	CommonName         string
}

CSRConfig contains necessary parameters for creating csr.

type GenerateCertTemplateConfig

type GenerateCertTemplateConfig struct {
	PrivKey            crypto.PrivateKey
	IsCA               bool
	Country            string
	Locality           string
	Province           string
	OrganizationalUnit string
	Organization       string
	CommonName         string
	ExpireYear         int32
	Sans               []string
	KeyUsages          []x509.KeyUsage
	ExtKeyUsages       []x509.ExtKeyUsage
}

GenerateCertTemplateConfig contains necessary parameters for creating private key.

type IssueCertificateConfig

type IssueCertificateConfig struct {
	HashType              crypto.HashType
	IsCA                  bool
	IssuerPrivKeyFilePath string
	IssuerCertFilePath    string
	IssuerPrivKeyPwd      []byte
	CsrFilePath           string
	CertPath              string
	CertFileName          string
	ExpireYear            int32
	Sans                  []string
	Uuid                  string
	KeyUsages             []x509.KeyUsage
	ExtKeyUsages          []x509.ExtKeyUsage
}

IssueCertificateConfig contains necessary parameters for issuing cert.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL