smallstep-certificates/scep/database.go
2021-05-26 16:12:57 -07:00

8 lines
105 B
Go

package scep
import "crypto/x509"
type DB interface {
StoreCertificate(crt *x509.Certificate) error
}