[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#44785] [PATCH 12/22] gnu: Add rust-ed25519-1.
From: |
Hartmut Goebel |
Subject: |
[bug#44785] [PATCH 12/22] gnu: Add rust-ed25519-1. |
Date: |
Sun, 22 Nov 2020 00:13:57 +0100 |
* gnu/packages/crates-io.scm (rust-ed25519-1): New variable.
---
gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index aa6b822db8..8bf7875698 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7193,6 +7193,37 @@ floating-point primitives to an @code{io::Write}.")
"This package provides lightweight binding to DirectWrite.")
(license license:mpl2.0)))
+(define-public rust-ed25519-1
+ (package
+ (name "rust-ed25519")
+ (version "1.0.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "ed25519" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1vxn7x1xinbv1cl31015m0fw08jwkphylxrll17animv9i9nmiip"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-serde" ,rust-serde-1)
+ ("rust-signature" ,rust-signature-1))))
+ (home-page "")
+ (synopsis "Edwards Digital Signature Algorithm (EdDSA) over Curve25519")
+ (description
+ "EdDSA over Curve25519 is specified in RFC 8032. This package contains
+an ed25519::Signature type which other packages can use in conjunction with
+the signature::Signer and signature::Verifier traits It doesn't contain an
+implementation of Ed25519.
+
+These traits allow packages which produce and consume Ed25519 signatures to be
+written abstractly in such a way that different signer/verifier providers can
+be plugged in, enabling support for using different Ed25519 implementations,
+including HSMs or Cloud KMS services.")
+ (license (list license:asl2.0 license:expat))))
+
(define-public rust-edit-distance-2.1
(package
(name "rust-edit-distance")
--
2.21.3
- [bug#44785] [PATCH 00/22] Update sequoia to 0.20.0, Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 02/22] gnu: Add rust-win-crypto-ng-0.2., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 01/22] gnu: Add rust-rpassword-5., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 06/22] gnu: Add rust-lalrpop-util-0.19., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 07/22] gnu: Add rust-lalrpop-0.19., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 12/22] gnu: Add rust-ed25519-1.,
Hartmut Goebel <=
- [bug#44785] [PATCH 05/22] gnu: Add rust-ena-0.14:, Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 10/22] gnu: Add rust-signature-derive-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 09/22] gnu: Add rust-merlin-2., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 11/22] gnu: Add rust-signature-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 03/22] gnu: Add rust-num-bigint-dig-0.6., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 08/22] gnu: Add rust-keccak-0.1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 13/22] gnu: Add rust-curve25519-dalek-3., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 04/22] gnu: Add rust-memsec-0.6., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 14/22] gnu: Add rust-ed25519-dalek-1., Hartmut Goebel, 2020/11/21
- [bug#44785] [PATCH 15/22] gnu: Add rust-dyn-clone-1., Hartmut Goebel, 2020/11/21