forked from TrueCloudLab/certificates
Fix some ACME DA doc strings (slightly)
This commit is contained in:
parent
4cf25ede24
commit
85cd9a1277
1 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ func (c ACMEChallenge) Validate() error {
|
||||||
type ACMEAttestationFormat string
|
type ACMEAttestationFormat string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// APPLE is the format used to enable device-attest-01 on apple devices.
|
// APPLE is the format used to enable device-attest-01 on Apple devices.
|
||||||
APPLE ACMEAttestationFormat = "apple"
|
APPLE ACMEAttestationFormat = "apple"
|
||||||
|
|
||||||
// STEP is the format used to enable device-attest-01 on devices that
|
// STEP is the format used to enable device-attest-01 on devices that
|
||||||
|
@ -57,7 +57,7 @@ const (
|
||||||
// TODO(mariano): should we rename this to something else.
|
// TODO(mariano): should we rename this to something else.
|
||||||
STEP ACMEAttestationFormat = "step"
|
STEP ACMEAttestationFormat = "step"
|
||||||
|
|
||||||
// TPM is the format used to enable device-attest-01 on TPMs.
|
// TPM is the format used to enable device-attest-01 with TPMs.
|
||||||
TPM ACMEAttestationFormat = "tpm"
|
TPM ACMEAttestationFormat = "tpm"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@ func (p *ACME) Init(config Config) (err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse attestation roots.
|
// Parse attestation roots.
|
||||||
// The pool will be nil if the there are not roots.
|
// The pool will be nil if there are no roots.
|
||||||
if rest := p.AttestationRoots; len(rest) > 0 {
|
if rest := p.AttestationRoots; len(rest) > 0 {
|
||||||
var block *pem.Block
|
var block *pem.Block
|
||||||
var hasCert bool
|
var hasCert bool
|
||||||
|
|
Loading…
Reference in a new issue