8 lines
219 B
Go
8 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
|
||
|
}
|