aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-11-10 12:26:01 +0700
committerShulhan <ms@kilabit.info>2023-11-10 12:53:36 +0700
commit378facb96e877ed275a59d974ee9b69e06120a53 (patch)
treefe930c06d3d306c872c15bf36d74a24dbb35a993 /README.md
parentd7ae2721b8268b1e2880656504f41d4ae94c902b (diff)
downloadeasypki-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.md33
1 files changed, 5 insertions, 28 deletions
diff --git a/README.md b/README.md
index f2a67e6..8f7aff8 100644
--- a/README.md
+++ b/README.md
@@ -1,37 +1,14 @@
-[![Build
-Status](https://travis-ci.org/google/easypki.svg?branch=master)](https://travis-ci.org/google/easypki)
-[![codecov](https://codecov.io/gh/google/easypki/branch/master/graph/badge.svg)](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
-
-[![godoc](https://godoc.org/github.com/google/easypki?status.svg)](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"
-```
+[![godoc](https://pkg.go.dev/git.sr.ht/~shulhan/easypki?status.svg)](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.