Skip to content

Commit 17aa5ea

Browse files
committed
ca-component -> certificates
1 parent e2cf66c commit 17aa5ea

File tree

7 files changed

+45
-51
lines changed

7 files changed

+45
-51
lines changed

Gopkg.lock

Lines changed: 38 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ required = [
4747
branch = "master"
4848
name = "golang.org/x/crypto"
4949

50-
[[override]]
51-
name = "github.com/smallstep/ca-component"
52-
branch = "max/refactor"
53-
5450
[[constraint]]
5551
name = "gopkg.in/square/go-jose.v2"
5652
version = "2.1.9"

command/ca/certificate.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010

1111
"github.com/pkg/errors"
12-
"github.com/smallstep/ca-component/api"
13-
"github.com/smallstep/ca-component/ca"
12+
"github.com/smallstep/certificates/api"
13+
"github.com/smallstep/certificates/ca"
1414
"github.com/smallstep/cli/crypto/pemutil"
1515
"github.com/smallstep/cli/crypto/pki"
1616
"github.com/smallstep/cli/errs"

command/ca/provisioner/add.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package provisioner
22

33
import (
44
"github.com/pkg/errors"
5-
"github.com/smallstep/ca-component/authority"
5+
"github.com/smallstep/certificates/authority"
66
"github.com/smallstep/cli/errs"
77
"github.com/smallstep/cli/jose"
88
"github.com/smallstep/cli/ui"

command/ca/provisioner/remove.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package provisioner
22

33
import (
44
"github.com/pkg/errors"
5-
"github.com/smallstep/ca-component/authority"
5+
"github.com/smallstep/certificates/authority"
66
"github.com/smallstep/cli/errs"
77
"github.com/urfave/cli"
88
)

command/ca/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/pkg/errors"
88

9-
"github.com/smallstep/ca-component/ca"
9+
"github.com/smallstep/certificates/ca"
1010
"github.com/smallstep/cli/crypto/pemutil"
1111
"github.com/smallstep/cli/errs"
1212
"github.com/urfave/cli"

crypto/pki/pki.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"path/filepath"
1010

1111
"github.com/pkg/errors"
12-
"github.com/smallstep/ca-component/authority"
13-
"github.com/smallstep/ca-component/ca"
12+
"github.com/smallstep/certificates/authority"
13+
"github.com/smallstep/certificates/ca"
1414
"github.com/smallstep/cli/config"
1515
"github.com/smallstep/cli/crypto/pemutil"
1616
"github.com/smallstep/cli/crypto/tlsutil"

0 commit comments

Comments
 (0)