diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-05 21:46:04 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:38 +0000 |
commit | f099ed03b6f5c9e05651d6982ee236dcd71bcbde (patch) | |
tree | e85da433a6df0c3e6997249a3ce7bbdd851fe1e6 /gnu/packages/golang-crypto.scm | |
parent | 33ffe7326bcf4e741edd9acc5cd821f46decf2ae (diff) |
gnu: go-github-com-xdg-go-pbkdf2: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-xdg-go-pbkdf2): Move from here ...
* gnu/packages/golang-web.scm: ... to here.
Change-Id: I3151905dcf2cdedc00c4d2f84b0e76f5b6a25d30
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index fe4ed36e7a..d9cd2001ca 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1836,6 +1836,31 @@ ssh-agent that uses UNIX sockets, and one could implement an alternative ssh-agent process using the sample server.") (license license:asl2.0))) +(define-public go-github-com-xdg-go-pbkdf2 + (package + (name "go-github-com-xdg-go-pbkdf2") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xdg-go/pbkdf2") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nipijy5xkdnfyhkp5ryrjzm14si1i2v2xyfmblf84binwkbr8jh")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/xdg-go/pbkdf2")) + (home-page "https://github.com/xdg-go/pbkdf2") + (synopsis "Go implementation of PBKDF2") + (description + "Package pbkdf2 implements password-based key derivation using the PBKDF2 +algorithm described in @url{https://rfc-editor.org/rfc/rfc2898.html,RFC 2898} +and @url{https://rfc-editor.org/rfc/rfc8018.html,RFC 8018}.") + (license license:asl2.0))) + (define-public go-github-com-youmark-pkcs8 (package (name "go-github-com-youmark-pkcs8") |