certificates/scep/database.go

8 lines
105 B
Go
Raw Normal View History

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