mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
15 lines
272 B
Go
15 lines
272 B
Go
package acme
|
|
|
|
import (
|
|
"crypto/x509"
|
|
)
|
|
|
|
// Certificate options with which to create and store a cert object.
|
|
type Certificate struct {
|
|
ID string
|
|
AccountID string
|
|
OrderID string
|
|
Leaf *x509.Certificate
|
|
Intermediates []*x509.Certificate
|
|
}
|