0
0
Fork 0

Compare commits

..

No commits in common. "31b081c06e4fb6b33d2e48bb87443509f7b2f98e" and "c07b174d42a1de307ab198bcb6baf10606759269" have entirely different histories.

7 changed files with 7 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -51,5 +51,6 @@ 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"
"git.zero-knowledge.org/gibheer/pki"
"github.com/gibheer/pki"
)
type (

View File

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