mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-05 21:20:34 +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
|
||
|
}
|