Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions authority/provisioner/acme.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"fmt"
"net"
"net/http"
"slices"
"strings"
"sync/atomic"
"time"
Expand Down Expand Up @@ -512,7 +511,7 @@ func (p *ACME) GetAttestationRoots() (*x509.CertPool, bool) {
func (p *ACME) IsAndroidCertificateRevoked(ctx context.Context, cert *x509.Certificate) (bool, error) {
// the check only has to be performed when the "android-key" attestation
// format is enabled
if !slices.Contains(p.AttestationFormats, ANDROIDKEY) {
if !p.IsAttestationFormatEnabled(ctx, ANDROIDKEY) {
return false, nil
}

Expand Down