mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:32:13 +02:00
Update ACME docs (protocol version info)
This commit is contained in:
@@ -1,22 +1,12 @@
|
|||||||
"""ACME protocol implementation.
|
"""ACME protocol implementation.
|
||||||
|
|
||||||
.. warning:: This module is an implementation of the draft `ACME
|
This module is an implementation of the `ACME protocol`_. Latest
|
||||||
protocol version 00`_, and not the latest (as of time of writing),
|
supported version: `v02`_.
|
||||||
"RESTified" `ACME protocol version 01`_. It should work with the
|
|
||||||
server from the `Node.js implementation`_, but will not work with
|
|
||||||
Boulder_.
|
|
||||||
|
|
||||||
|
|
||||||
.. _`ACME protocol`: https://github.com/letsencrypt/acme-spec
|
.. _`ACME protocol`: https://github.com/letsencrypt/acme-spec
|
||||||
|
|
||||||
.. _`ACME protocol version 00`:
|
.. _`v02`:
|
||||||
https://github.com/letsencrypt/acme-spec/blob/v00/draft-barnes-acme.md
|
https://github.com/letsencrypt/acme-spec/commit/d328fea2d507deb9822793c512830d827a4150c4
|
||||||
|
|
||||||
.. _`ACME protocol version 01`:
|
|
||||||
https://github.com/letsencrypt/acme-spec/blob/v01/draft-barnes-acme.md
|
|
||||||
|
|
||||||
.. _Boulder: https://github.com/letsencrypt/boulder
|
|
||||||
|
|
||||||
.. _`Node.js implementation`: https://github.com/letsencrypt/node-acme
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,4 +1,25 @@
|
|||||||
"""ACME protocol messages."""
|
"""ACME protocol v00 messages.
|
||||||
|
|
||||||
|
.. warning:: This module is an implementation of the draft `ACME
|
||||||
|
protocol version 00`_, and not the "RESTified" `ACME protocol version
|
||||||
|
01`_ or later. It should work with `older Node.js implementation`_,
|
||||||
|
but will definitely not work with Boulder_. It is kept for reference
|
||||||
|
purposes only.
|
||||||
|
|
||||||
|
|
||||||
|
.. _`ACME protocol version 00`:
|
||||||
|
https://github.com/letsencrypt/acme-spec/blob/v00/draft-barnes-acme.md
|
||||||
|
|
||||||
|
.. _`ACME protocol version 01`:
|
||||||
|
https://github.com/letsencrypt/acme-spec/blob/v01/draft-barnes-acme.md
|
||||||
|
|
||||||
|
.. _Boulder: https://github.com/letsencrypt/boulder
|
||||||
|
|
||||||
|
.. _`older Node.js implementation`:
|
||||||
|
https://github.com/letsencrypt/node-acme/commit/f42aa5b7fad4cd2fc289653c4ab14f18052367b3
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
import jsonschema
|
import jsonschema
|
||||||
|
|
||||||
from letsencrypt.acme import challenges
|
from letsencrypt.acme import challenges
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"""ACME protocol v02 messages."""
|
"""ACME protocol messages."""
|
||||||
from letsencrypt.acme import challenges
|
from letsencrypt.acme import challenges
|
||||||
from letsencrypt.acme import fields
|
from letsencrypt.acme import fields
|
||||||
from letsencrypt.acme import jose
|
from letsencrypt.acme import jose
|
||||||
|
|||||||
Reference in New Issue
Block a user