unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
To: 74355@debbugs.gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Subject: [bug#74355] [PATCH v4 3/7] gnu: Add go-github-com-mholt-acmez.
Date: Sat, 16 Nov 2024 18:34:11 +0300	[thread overview]
Message-ID: <8126f36c39dc8f0444c1d0b35a5066487ed8cc25.1731771236.git.poptsov.artyom@gmail.com> (raw)
In-Reply-To: <63c54994d2630c740169a14e9479892e324c10a9.1731771236.git.poptsov.artyom@gmail.com>

* gnu/packages/golang-web.scm (go-github-com-mholt-acmez): New variable.

Change-Id: I220f588ff600e032c38974b9f09e873d22a1811a
---
 gnu/packages/golang-web.scm | 62 +++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 64670eed43..689048b368 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3654,6 +3654,68 @@ (define-public go-github-com-mdlayher-socket
 deadline support.")
     (license license:expat)))
 
+(define-public go-github-com-mholt-acmez
+  (package
+    (name "go-github-com-mholt-acmez")
+    (version "2.0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mholt/acmez")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0xfl6p8izgjs1d26iygfilmmagxld409qsgdy60r1chfsrcnraby"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/mholt/acmez"))
+    (propagated-inputs
+     (list go-golang-org-x-crypto
+           go-golang-org-x-net
+           go-go-uber-org-zap))
+    (home-page "https://github.com/mholt/acmez")
+    (synopsis "ACME (RFC 8555) client library for Go")
+    (description
+     "@code{ACMEz} is a lightweight, fully-compliant
+@url{https://tools.ietf.org/html/rfc8555, RFC 8555} (ACME) implementation, that
+provides an API for getting certificates.  @code{ACMEz} is suitable for large-scale
+enterprise deployments.  It also supports common IETF-standardized ACME extensions.
+
+This module has two primary packages:
+@itemize
+@item @code{acmez} is a high-level wrapper for getting certificates.  It implements
+the ACME order flow described in RFC 8555 including challenge solving using pluggable
+solvers.
+@item @code{acme} is a low-level RFC 8555 implementation that provides the
+fundamental ACME operations, mainly useful if you have advanced or niche
+requirements.
+@end itemize
+
+Main features:
+@itemize
+@item Go API that thoroughly documented with spec citations.
+@item Structured error values (@samp{problems} as defined in
+@url{https://tools.ietf.org/html/rfc7807, RFC 7807}.)
+@item Smart retries (resilient against network and server hiccups.)
+@item Challenge plasticity (randomized challenges, and will retry others if one
+fails.)
+@item Context cancellation (suitable for high-frequency config changes or reloads.)
+@item Highly flexible and customizable.
+@item External Account Binding (EAB) support.
+@item Tested with numerous ACME CAs (more than just Let's Encrypt.)
+@item Implements niche aspects of RFC 8555 (such as alt cert chains and account key
+rollover.)
+@item Efficient solving of large SAN lists (e.g. for slow DNS record propagation.)
+@item Utility functions for solving challenges: device attestation
+challenges (draft-acme-device-attest-02), @url{https://tools.ietf.org/html/rfc8737,
+RFC 8737} (tls-alpn-01 challenge), @url{https://tools.ietf.org/html/rfc8823, RFC
+8823} (email-reply-00 challenge; S/MIME.)
+@item ACME Renewal Information (ARI) support (draft-ietf-acme-ari-03.)
+@end itemize")
+    (license license:asl2.0)))
+
 (define-public go-github-com-microcosm-cc-bluemonday
   (package
     (name "go-github-com-microcosm-cc-bluemonday")
-- 
2.46.0





  parent reply	other threads:[~2024-11-16 15:36 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-14 20:11 [bug#74355] [PATCH 0/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-14 20:12 ` [bug#74355] [PATCH 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-15 21:43 ` [bug#74355] [PATCH 0/7] " Sharlatan Hellseher
2024-11-16  7:28   ` Artyom V. Poptsov
2024-11-16  7:26 ` [bug#74355] [PATCH v2 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-16  7:26   ` [bug#74355] [PATCH v2 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-16  7:26   ` [bug#74355] [PATCH v2 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-16  7:26   ` [bug#74355] [PATCH v2 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-16  7:26   ` [bug#74355] [PATCH v2 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-16  7:26   ` [bug#74355] [PATCH v2 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-16  7:26   ` [bug#74355] [PATCH v2 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-16 14:23 ` [bug#74355] [PATCH 0/7] " Sharlatan Hellseher
2024-11-16 15:21 ` [bug#74355] [PATCH v3 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-16 15:21   ` [bug#74355] [PATCH v3 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-16 15:21   ` [bug#74355] [PATCH v3 3/7] gnu: Add go-github-com-mholt-acmez Artyom V. Poptsov
2024-11-16 15:21   ` [bug#74355] [PATCH v3 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-16 15:21   ` [bug#74355] [PATCH v3 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-16 15:21   ` [bug#74355] [PATCH v3 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-16 15:21   ` [bug#74355] [PATCH v3 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov
2024-11-16 15:34 ` [bug#74355] [PATCH v4 1/7] gnu: Add go-github-com-caddyserver-zerossl Artyom V. Poptsov
2024-11-16 15:34   ` [bug#74355] [PATCH v4 2/7] gnu: Add go-github-com-libdns-libdns Artyom V. Poptsov
2024-11-16 15:34   ` Artyom V. Poptsov [this message]
2024-11-16 15:34   ` [bug#74355] [PATCH v4 4/7] gnu: Add go-github-com-zeebo-assert Artyom V. Poptsov
2024-11-16 15:34   ` [bug#74355] [PATCH v4 5/7] gnu: Add go-github-com-zeebo-pcg Artyom V. Poptsov
2024-11-16 15:34   ` [bug#74355] [PATCH v4 6/7] gnu: Add go-github-com-zeebo-blake3 Artyom V. Poptsov
2024-11-16 15:34   ` [bug#74355] [PATCH v4 7/7] gnu: Add go-github-com-caddyserver-certmagic Artyom V. Poptsov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8126f36c39dc8f0444c1d0b35a5066487ed8cc25.1731771236.git.poptsov.artyom@gmail.com \
    --to=poptsov.artyom@gmail.com \
    --cc=74355@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).