From af2e58ab28f3405456aa4276fe5e943ba0f272bc Mon Sep 17 00:00:00 2001 From: VonRehberg Date: Thu, 28 Nov 2024 13:35:53 +0100 Subject: [PATCH] fix: allow active revocation on http revoke endpoint --- api/revoke.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/revoke.go b/api/revoke.go index 41969c083..072ff7e04 100644 --- a/api/revoke.go +++ b/api/revoke.go @@ -42,9 +42,6 @@ func (r *RevokeRequest) Validate() (err error) { if r.ReasonCode < ocsp.Unspecified || r.ReasonCode > ocsp.AACompromise { return errs.BadRequest("reasonCode out of bounds") } - if !r.Passive { - return errs.NotImplemented("non-passive revocation not implemented") - } return }