forked from TrueCloudLab/certificates
7 lines
105 B
Go
7 lines
105 B
Go
package scep
|
|
|
|
import "crypto/x509"
|
|
|
|
type DB interface {
|
|
StoreCertificate(crt *x509.Certificate) error
|
|
}
|