diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-10 12:26:01 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-10 12:53:36 +0700 |
| commit | 378facb96e877ed275a59d974ee9b69e06120a53 (patch) | |
| tree | fe930c06d3d306c872c15bf36d74a24dbb35a993 /README.md | |
| parent | d7ae2721b8268b1e2880656504f41d4ae94c902b (diff) | |
| download | easypki-378facb96e877ed275a59d974ee9b69e06120a53.tar.xz | |
all: fork of unmaintained "github.com/google/easypki"
Changes,
* Add Go module
* replace "github.com/codegangsta/cli" with "github.com/urfave/cli"
* Changes import path to this repository using the following command,
$ find . -type f -name "*.go" \
| xargs sed -i "s#github.com/google/easypki#git.sr.ht/~shulhan/easypki#g"
* Reformat all files using goimports
* Remove reference to Travis and CodeCov
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 33 |
1 files changed, 5 insertions, 28 deletions
@@ -1,37 +1,14 @@ -[](https://travis-ci.org/google/easypki) -[](https://codecov.io/gh/google/easypki) - -easypki -====== +# easypki Easy Public Key Infrastructure intends to provide most of the components needed to manage a PKI, so you can either use the API in your automation, or use the CLI. -# API - -[](https://godoc.org/github.com/google/easypki) - -For the latest API: - -``` -import "gopkg.in/google/easypki.v1" -``` +This is a fork of https://github.com/google/easypki . -## Legacy API - -API below pkg/ has been rewritten to allow extensibility in terms of PKI -storage and better readability. - -If you used the legacy API that was only writing files to disk, a tag has been -applied so you can still import it: - -``` -import "gopkg.in/google/easypki.v0" -``` +[](https://pkg.go.dev/git.sr.ht/~shulhan/easypki) -# CLI +## CLI Current implementation of the CLI uses the local store and uses a structure compatible with openssl, so you are not restrained. @@ -81,6 +58,6 @@ private keys in `$PKI_ROOT/ca_name/keys/` For more info about available flags, checkout out the help `easypki -h`. -# Disclaimer +## Disclaimer This is not an official Google product. |
