7 lines
219 B
Go
7 lines
219 B
Go
package revoking
|
|
|
|
// A Repository for storing certificate status information
|
|
type Repository interface {
|
|
// StoreRevocation stores information about a revoked certificate.
|
|
StoreRevocation(*CertificateRevoked) error
|
|
}
|