certificates/scep/database.go
2021-03-21 16:42:41 +01:00

7 lines
105 B
Go

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