summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-12-05 19:32:40 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-07 07:55:50 +0000
commite6822cee1882ebd2b204814ef12b38f4f8ef148c (patch)
tree585cc68ebe2632bba43d2307b3f2b9a28adc883e /gnu
parent9e97562845ea9cabc5563c0bdb6c4a09b2273fd6 (diff)
gnu: Add go-github-com-codahale-rfc6979.
* gnu/packages/golang-crypto.scm (go-github-com-codahale-rfc6979): New variable. Change-Id: If59c57b524a9a3141c005f4f533254fdfb3f9a92 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-crypto.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 2b944c434c..dc63ad1635 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -628,6 +628,32 @@ Cryptography (ECC).")
@code{encoding/base64} library.")
(license (list license:asl2.0 license:asl2.0))))
+(define-public go-github-com-codahale-rfc6979
+ (package
+ (name "go-github-com-codahale-rfc6979")
+ (version "0.0.0-20141003034818-6a90f24967eb")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/codahale/rfc6979")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "07p51hmvvzvn84mg1c3kmp799j7jf7w15770qw8qz9q7j8frx03f"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/codahale/rfc6979"))
+ (home-page "https://github.com/codahale/rfc6979")
+ (synopsis "Deterministic ECDSA signatures in Go")
+ (description
+ "This package implements @url{https://www.rfc-editor.org/rfc/rfc6979, RFC
+6979}, which describes how to generate deterministic ECDSA signatures.
+Deterministic signatures remove the need for a random number generator during
+signing.")
+ (license license:isc)))
+
(define-public go-github-com-containers-ocicrypt
(package
(name "go-github-com-containers-ocicrypt")