mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18: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
|
|
}
|