Skip to content

Commit

Permalink
fix: allow active revocation on http revoke endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
VonRehberg committed Dec 12, 2024
1 parent c986962 commit af2e58a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions api/revoke.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit af2e58a

Please sign in to comment.