golang-github-youmark-pkcs8 1.1-3 source package in Ubuntu

Changelog

golang-github-youmark-pkcs8 (1.1-3) unstable; urgency=medium

  [ Drew Parsons ]
  * clean cruft from package Description

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Apply multi-arch hints. + golang-github-youmark-pkcs8-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Wed, 23 Nov 2022 23:59:37 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-youmark-pkcs8_1.1-3.dsc 2.2 KiB 693db6e4bdd71af980f61971f2cf2d5f5cd676658e882b9b6362ea567e7635b6
golang-github-youmark-pkcs8_1.1.orig.tar.gz 9.6 KiB e421a1ec4bbaae637e72977fbccafee7c9a1f7c2677980f83d99b49f0769c1db
golang-github-youmark-pkcs8_1.1-3.debian.tar.xz 2.6 KiB eb409f3ea2951b40e9c30f59f266918fb9aaa73cd288396da05f511f73ab2b80

Available diffs

No changes file available.

Binary packages built by this source

golang-github-youmark-pkcs8-dev: Go package to parse and convert private keys in PKCS#8 format (library)

 pkcs8 OpenSSL can generate private keys in both "traditional format"
 and PKCS#8 format. Newer applications are advised to use more
 secure PKCS#8 format. Go standard crypto package provides a function
 (http://golang.org/pkg/crypto/x509/#ParsePKCS8PrivateKey) to parse
 private key in PKCS#8 format. There is a limitation to this function. It
 can only handle unencrypted PKCS#8 private keys. To use this function,
 the user has to save the private key in file without encryption, which
 is a bad practice to leave private keys unprotected on file systems. In
 addition, Go standard package lacks the functions to convert RSA/ECDSA
 private keys into PKCS#8 format.
 .
 pkcs8 package fills the gap here. It implements functions
 to process private keys in PKCS#8 format, as defined in
 RFC5208 (https://tools.ietf.org/html/rfc5208) and RFC5958
 (https://tools.ietf.org/html/rfc5958). It can handle both unencrypted
 PKCS#8 PrivateKeyInfo format and EncryptedPrivateKeyInfo format with
 PKCS#5 (v2.0) algorithms.