summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-crypto.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-12-29 22:35:45 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:42:39 +0000
commit011a10dbc0b80310df0e99dc7cc71fa832626f8e (patch)
treecfa21e7cc6559d2bfd0db532c61ecb4d4763c962 /gnu/packages/golang-crypto.scm
parent08b4850e6c511d675e32a9d5e25c45fb04166ce4 (diff)
gnu: go-github-com-dchest-siphash: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-dchest-siphash): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I88a952103cf74c8a8482f243be0af6ee24cb85da
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r--gnu/packages/golang-crypto.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 914ff0cc38..517c3946fc 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -599,6 +599,29 @@ one-time authenticator as specified in
@end itemize")
(license license:expat)))
+(define-public go-github-com-dchest-siphash
+ (package
+ (name "go-github-com-dchest-siphash")
+ (version "1.2.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dchest/siphash")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1d6vbg5i5r6pgfk3vh93a20jdj67lgr17dk2iml7fffw67i25a2c"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/dchest/siphash"))
+ (home-page "https://github.com/dchest/siphash")
+ (synopsis "Go library for pseudorandom functions")
+ (description
+ "SipHash is a family of pseudorandom functions (PRFs) optimized
+for speed on short messages.")
+ (license license:cc0)))
+
(define-public go-github-com-decred-dcrd-crypto-blake256
(package
(name "go-github-com-decred-dcrd-crypto-blake256")