mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add go-github-com-youmark-pkcs8.
* gnu/packages/golang-crypto.scm (go-github-com-youmark-pkcs8): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: If16a5d911d645396c5976893f2fc43a7f26bf283
This commit is contained in:
parent
27eecaac18
commit
e61d34b8b0
1 changed files with 28 additions and 0 deletions
|
@ -1493,6 +1493,34 @@ (define-public go-gitlab-com-yawning-edwards25519-extra
|
||||||
possible.")
|
possible.")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
|
(define-public go-github-com-youmark-pkcs8
|
||||||
|
(package
|
||||||
|
(name "go-github-com-youmark-pkcs8")
|
||||||
|
(version "1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/youmark/pkcs8")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ckdrwa5rmp2c85936qd9d0gzrnrvqfg0297ansz5frdhg6fc6nq"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/youmark/pkcs8"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-golang-org-x-crypto))
|
||||||
|
(home-page "https://github.com/youmark/pkcs8")
|
||||||
|
(synopsis "Functions to parse and convert private keys in PKCS#8 format")
|
||||||
|
(description
|
||||||
|
"@code{pkcs8} implements functions to process private keys in PKCS#8
|
||||||
|
format, as defined in RFC 5208 and RFC 5958. It can handle both unencrypted
|
||||||
|
PKCS#8 PrivateKeyInfo format and EncryptedPrivateKeyInfo format with
|
||||||
|
PKCS#5 (v2.0) algorithms.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-lukechampine-com-blake3
|
(define-public go-lukechampine-com-blake3
|
||||||
(package
|
(package
|
||||||
(name "go-lukechampine-com-blake3")
|
(name "go-lukechampine-com-blake3")
|
||||||
|
|
Loading…
Reference in a new issue