Skip to main content

Module star

Module star 

Source
Expand description

STAR (Short-Term Automatic Renewal) endpoints (RFC 8739).

Extends the EST endpoint set (RFC 7030) with STAR semantics for automatic certificate renewal. Clients create a STAR order once, then fetch the latest certificate at any time without re-authenticating.

§Route structure

/.well-known/est/star
    POST              Create STAR order (authenticated)

/.well-known/est/star/{order_id}
    GET               Fetch current certificate (unauthenticated)
    DELETE            Cancel STAR order (authenticated)

/.well-known/est/star/{order_id}/history
    GET               List all certificates in series (unauthenticated)

Functions§

delete_star_order
DELETE /.well-known/est/star/{order_id}
get_star_certificate
GET /.well-known/est/star/{order_id}
get_star_history
GET /.well-known/est/star/{order_id}/history
post_star_order
POST /.well-known/est/star
star_router
Build the STAR sub-router.