mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
8 lines
105 B
Go
8 lines
105 B
Go
package scep
|
|
|
|
import "crypto/x509"
|
|
|
|
type DB interface {
|
|
StoreCertificate(crt *x509.Certificate) error
|
|
}
|