certificates/scep/database.go

8 lines
105 B
Go
Raw Normal View History

2021-03-21 15:42:41 +00:00
package scep
import "crypto/x509"
type DB interface {
StoreCertificate(crt *x509.Certificate) error
}