You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/vendor/github.com/youmark/pkcs8
李光春 c40526bfc0
update v1.0.45
2 years ago
..
.gitignore update v1.0.45 2 years ago
.travis.yml update v1.0.45 2 years ago
LICENSE update v1.0.45 2 years ago
README update v1.0.45 2 years ago
README.md update v1.0.45 2 years ago
cipher.go update v1.0.45 2 years ago
cipher_3des.go update v1.0.45 2 years ago
cipher_aes.go update v1.0.45 2 years ago
kdf_pbkdf2.go update v1.0.45 2 years ago
kdf_scrypt.go update v1.0.45 2 years ago
pkcs8.go update v1.0.45 2 years ago

README.md

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 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 and RFC5958. It can handle both unencrypted PKCS#8 PrivateKeyInfo format and EncryptedPrivateKeyInfo format with PKCS#5 (v2.0) algorithms.

Godoc

Installation

Supports Go 1.10+. Release v1.1 is the last release supporting Go 1.9

go get github.com/youmark/pkcs8

dependency

This package depends on golang.org/x/crypto/pbkdf2 and golang.org/x/crypto/scrypt packages. Use the following command to retrieve them

go get golang.org/x/crypto/pbkdf2
go get golang.org/x/crypto/scrypt