diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-21 15:31:32 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:58 +0200 |
commit | 11ed36d9349bb1a84334c6315feb9b542f805c54 (patch) | |
tree | 25fc9fd88a9a6e87c1480a4b18ca8b389f3df9e2 /gnu/packages/crates-crypto.scm | |
parent | cf6b4518fc3bb6a47096d504d9b0aa987909d34b (diff) |
gnu: rust-rfc6979: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-rfc6979-0.4, rust-rfc6979-0.3): Move
from here ...
* gnu/packages/crates-crypto.scm: ... to here.
Change-Id: I8614ca4773ec25ee703536ba66809adb9f9abbd9
Diffstat (limited to 'gnu/packages/crates-crypto.scm')
-rw-r--r-- | gnu/packages/crates-crypto.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm index 73a02ffdc2..fd3096b2dc 100644 --- a/gnu/packages/crates-crypto.scm +++ b/gnu/packages/crates-crypto.scm @@ -2004,3 +2004,48 @@ implementation suitable for use with cryptographic private keys.") (description "This crate provides an implementation of the crypto-simd API for x86.") (license (list license:asl2.0 license:expat)))) + +(define-public rust-rfc6979-0.4 + (package + (name "rust-rfc6979") + (version "0.4.0") + (source (origin + (method url-fetch) + (uri (crate-uri "rfc6979" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1chw95jgcfrysyzsq6a10b1j5qb7bagkx8h0wda4lv25in02mpgq")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-hmac" ,rust-hmac-0.12) + ("rust-subtle" ,rust-subtle-2)) + #:cargo-development-inputs + (("rust-hex-literal" ,rust-hex-literal-0.3) + ("rust-sha2" ,rust-sha2-0.10)))) + (home-page "https://github.com/RustCrypto/signatures/tree/master/rfc6979") + (synopsis "Pure Rust implementation of RFC6979") + (description + "This package provides a pure Rust implementation of RFC6979: Deterministic +Usage of the @dfn{Digital Signature Algorithm} (DSA) and @dfn{Elliptic Curve +Digital Signature Algorithm} (ECDSA).") + (license (list license:asl2.0 license:expat)))) + +(define-public rust-rfc6979-0.3 + (package + (inherit rust-rfc6979-0.4) + (name "rust-rfc6979") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "rfc6979" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1fzsp705b5lhwd2r9il9grc3lj6rm3b2r89vh0xv181gy5xg2hvp")))) + (arguments + `(#:cargo-inputs (("rust-crypto-bigint" ,rust-crypto-bigint-0.4) + ("rust-hmac" ,rust-hmac-0.12) + ("rust-zeroize" ,rust-zeroize-1)) + #:cargo-development-inputs (("rust-sha2" ,rust-sha2-0.10)))))) |