0
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Gibheer 31b081c06e update import paths 2022-08-15 22:54:12 +02:00
Gibheer c2115003a1 remove missing command from output
diff was never implemented
2022-08-15 22:53:16 +02:00
7 changed files with 6 additions and 7 deletions

View File

@ -7,7 +7,7 @@ import (
"math/big"
"time"
"github.com/gibheer/pki"
"git.zero-knowledge.org/gibheer/pki"
)
var (

View File

@ -7,7 +7,7 @@ import (
"io"
"os"
"github.com/gibheer/pki"
"git.zero-knowledge.org/gibheer/pki"
)
const (

View File

@ -5,7 +5,7 @@ import (
"flag"
"fmt"
"github.com/gibheer/pki"
"git.zero-knowledge.org/gibheer/pki"
)
func CreateSignRequest(args []string) error {

View File

@ -4,7 +4,7 @@ import (
"fmt"
"os"
"github.com/gibheer/pki"
"git.zero-knowledge.org/gibheer/pki"
)
func loadPrivateKey(path string) (pki.PrivateKey, error) {

View File

@ -51,6 +51,5 @@ where 'command' is one of:
verify-input verify a message using a signature and a public key
create-sign-request create a certificate sign request
create-cert create a certificate from a certificate sign request
diff show the differences between two certificates
`, COMMAND)
}

2
pem.go
View File

@ -8,7 +8,7 @@ import (
"io"
"io/ioutil"
"github.com/gibheer/pki"
"git.zero-knowledge.org/gibheer/pki"
)
type (

View File

@ -7,7 +7,7 @@ import (
"fmt"
"io/ioutil"
"github.com/gibheer/pki"
"git.zero-knowledge.org/gibheer/pki"
)
func VerifyInput(args []string) error {