2021-08-23 18:53:43 +00:00
|
|
|
package signing
|
|
|
|
|
2022-04-23 17:37:42 +00:00
|
|
|
import "crypto/x509"
|
|
|
|
|
2021-08-23 18:53:43 +00:00
|
|
|
type Repository interface {
|
2022-04-23 17:37:42 +00:00
|
|
|
StoreCertificate(certificate *x509.Certificate) error
|
2021-08-23 18:53:43 +00:00
|
|
|
}
|