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" "math/big"
"time" "time"
"github.com/gibheer/pki" "git.zero-knowledge.org/gibheer/pki"
) )
var ( var (

View File

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

View File

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

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/gibheer/pki" "git.zero-knowledge.org/gibheer/pki"
) )
func loadPrivateKey(path string) (pki.PrivateKey, error) { 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 verify-input verify a message using a signature and a public key
create-sign-request create a certificate sign request create-sign-request create a certificate sign request
create-cert create a certificate from a certificate sign request create-cert create a certificate from a certificate sign request
diff show the differences between two certificates
`, COMMAND) `, COMMAND)
} }

2
pem.go
View File

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

View File

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