Jan Dittberner
63c3716b5b
small refactoring to unify package structure. Use crypto.rand for serial number generation in tests.
7 lines
124 B
Go
7 lines
124 B
Go
package signing
|
|
|
|
import "crypto/x509"
|
|
|
|
type Repository interface {
|
|
StoreCertificate(certificate *x509.Certificate) error
|
|
}
|