From: Justus Winter <justus@sequoia-pgp.org>
To: 42404@debbugs.gnu.org
Cc: Justus Winter <justus@sequoia-pgp.org>
Subject: [bug#42404] [PATCH 2/2] gnu: Add dkgpg.
Date: Mon, 20 Jul 2020 11:28:45 +0200 [thread overview]
Message-ID: <20200720092845.7213-2-justus@sequoia-pgp.org> (raw)
In-Reply-To: <20200720092845.7213-1-justus@sequoia-pgp.org>
* gnu/packages/openpgp.scm (dkgpg): New variable.
---
gnu/packages/openpgp.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/openpgp.scm b/gnu/packages/openpgp.scm
index b806ab78cc..d4bcbacafc 100644
--- a/gnu/packages/openpgp.scm
+++ b/gnu/packages/openpgp.scm
@@ -21,6 +21,7 @@
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:prefix license:)
+ #:use-module (gnu packages compression)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages multiprecision))
@@ -54,3 +55,41 @@ first section of [St05] for a short survey). LibTMCG provides the first
practical implementation of such protocols.")
(home-page "https://www.nongnu.org/libtmcg/")
(license license:gpl2+)))
+
+(define-public dkgpg
+ (package
+ (name "dkgpg")
+ (version "1.1.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://savannah/dkgpg/dkgpg-" version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1hpfg7akd5icj49i03z74hp9zj0xwl90bndn0hnw0hpb8lk7qcxg"))))
+ (build-system gnu-build-system)
+ (arguments '(#:configure-flags
+ '("--enable-silent-rules")
+ ;; https://savannah.nongnu.org/bugs/?58772
+ #:parallel-tests? #f))
+ (inputs `(("bzip2" ,bzip2)
+ ("gmp" ,gmp)
+ ("libgcrypt" ,libgcrypt)
+ ("libtmcg" ,libtmcg)
+ ("zlib" ,zlib)))
+ (synopsis
+ "Distributed Key Generation and Threshold Cryptography for OpenPGP")
+ (description
+ "The Distributed Privacy Guard (DKGPG) implements Distributed Key
+Generation (DKG) and Threshold Cryptography for OpenPGP. The generated public
+keys are compatible with the standard and thus can be used by any
+RFC4880-compliant application (e.g. GnuPG). The main purposes of this
+software are distributing power among multiple parties, eliminating single
+points of failure, and increasing the difficulty of side-channel attacks on
+private key material.
+
+DKGPG consists of a bunch of simple command-line programs. The current
+implementation is in experimental state and should NOT be used in production
+environments.")
+ (home-page "https://www.nongnu.org/dkgpg/")
+ (license license:gpl2+)))
--
2.20.1
next prev parent reply other threads:[~2020-07-20 9:30 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-17 9:36 [bug#42404] [PATCH] gnu: Add libtmcg and dkgpg Justus Winter
[not found] ` <87y2nfp5c6.fsf@gnu.org>
2020-07-20 8:53 ` Justus Winter
2020-07-20 9:28 ` [bug#42404] [PATCH 1/2] gnu: Add libtmcg Justus Winter
2020-07-20 9:28 ` Justus Winter [this message]
2020-07-23 12:03 ` [bug#42404] [PATCH 1/5] " Justus Winter
2020-07-23 12:03 ` [bug#42404] [PATCH 2/5] gnu: Add dkgpg Justus Winter
2020-07-23 12:03 ` [bug#42404] [PATCH 3/5] gnu: Add rnp Justus Winter
2020-07-24 10:27 ` Ludovic Courtès
2020-07-24 11:18 ` Justus Winter
2020-07-24 12:43 ` Justus Winter
2020-07-24 13:20 ` Ludovic Courtès
2020-07-27 13:38 ` [bug#42404] [PATCH 1/3] " Justus Winter
2020-07-27 13:44 ` Justus Winter
2020-07-28 22:16 ` Ludovic Courtès
2020-07-23 12:03 ` [bug#42404] [PATCH 4/5] gnu: Add python-pgpy Justus Winter
2020-07-23 12:03 ` [bug#42404] [PATCH 5/5] gnu: Add python-sop Justus Winter
2020-07-28 22:19 ` bug#42404: " Ludovic Courtès
2020-07-24 12:21 ` [bug#42404] [PATCH 1/5] gnu: Add libtmcg Ludovic Courtès
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200720092845.7213-2-justus@sequoia-pgp.org \
--to=justus@sequoia-pgp.org \
--cc=42404@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 external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.