Skip to content

Commit

Permalink
swapping to internal references
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory-Pereira committed Mar 5, 2024
1 parent 05eab9e commit d7b7c9e
Show file tree
Hide file tree
Showing 78 changed files with 188 additions and 188 deletions.
2 changes: 1 addition & 1 deletion cmd/app/createca.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"time"

"github.com/ThalesIgnite/crypto11"
"github.com/sigstore/fulcio/pkg/log"
"github.com/securesign/fulcio/pkg/log"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion cmd/app/createcanocgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
package app

import (
"github.com/sigstore/fulcio/pkg/log"
"github.com/securesign/fulcio/pkg/log"
"github.com/spf13/cobra"
)

Expand Down
14 changes: 7 additions & 7 deletions cmd/app/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ import (
grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-prometheus"
"github.com/prometheus/client_golang/prometheus"
"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/config"
gw "github.com/sigstore/fulcio/pkg/generated/protobuf"
gw_legacy "github.com/sigstore/fulcio/pkg/generated/protobuf/legacy"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/sigstore/fulcio/pkg/log"
"github.com/sigstore/fulcio/pkg/server"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/config"
gw "github.com/securesign/fulcio/pkg/generated/protobuf"
gw_legacy "github.com/securesign/fulcio/pkg/generated/protobuf/legacy"
"github.com/securesign/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/log"
"github.com/securesign/fulcio/pkg/server"
"github.com/spf13/viper"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
Expand Down
8 changes: 4 additions & 4 deletions cmd/app/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ import (
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/rs/cors"
gw "github.com/sigstore/fulcio/pkg/generated/protobuf"
legacy_gw "github.com/sigstore/fulcio/pkg/generated/protobuf/legacy"
"github.com/sigstore/fulcio/pkg/log"
"github.com/sigstore/fulcio/pkg/server"
gw "github.com/securesign/fulcio/pkg/generated/protobuf"
legacy_gw "github.com/securesign/fulcio/pkg/generated/protobuf/legacy"
"github.com/securesign/fulcio/pkg/log"
"github.com/securesign/fulcio/pkg/server"
"github.com/spf13/viper"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
Expand Down
4 changes: 2 additions & 2 deletions cmd/app/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
"sync"
"testing"

"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/identity"
"github.com/spf13/viper"

"google.golang.org/grpc"
Expand Down
2 changes: 1 addition & 1 deletion cmd/app/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/spf13/cobra"

"github.com/sigstore/fulcio/pkg/log"
"github.com/securesign/fulcio/pkg/log"
)

// rootCmd represents the base command when called without any subcommands
Expand Down
26 changes: 13 additions & 13 deletions cmd/app/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ import (
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
certauth "github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/ca/ephemeralca"
"github.com/sigstore/fulcio/pkg/ca/fileca"
googlecav1 "github.com/sigstore/fulcio/pkg/ca/googleca/v1"
"github.com/sigstore/fulcio/pkg/ca/kmsca"
"github.com/sigstore/fulcio/pkg/ca/pkcs11ca"
"github.com/sigstore/fulcio/pkg/ca/tinkca"
"github.com/sigstore/fulcio/pkg/config"
"github.com/sigstore/fulcio/pkg/generated/protobuf"
"github.com/sigstore/fulcio/pkg/generated/protobuf/legacy"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/sigstore/fulcio/pkg/log"
"github.com/sigstore/fulcio/pkg/server"
certauth "github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca/ephemeralca"
"github.com/securesign/fulcio/pkg/ca/fileca"
googlecav1 "github.com/securesign/fulcio/pkg/ca/googleca/v1"
"github.com/securesign/fulcio/pkg/ca/kmsca"
"github.com/securesign/fulcio/pkg/ca/pkcs11ca"
"github.com/securesign/fulcio/pkg/ca/tinkca"
"github.com/securesign/fulcio/pkg/config"
"github.com/securesign/fulcio/pkg/generated/protobuf"
"github.com/securesign/fulcio/pkg/generated/protobuf/legacy"
"github.com/securesign/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/log"
"github.com/securesign/fulcio/pkg/server"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
Expand Down
8 changes: 4 additions & 4 deletions cmd/app/serve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ import (
"time"

"github.com/google/go-cmp/cmp"
"github.com/sigstore/fulcio/pkg/api"
"github.com/sigstore/fulcio/pkg/ca/ephemeralca"
"github.com/sigstore/fulcio/pkg/config"
"github.com/sigstore/fulcio/pkg/generated/protobuf"
"github.com/securesign/fulcio/pkg/api"
"github.com/securesign/fulcio/pkg/ca/ephemeralca"
"github.com/securesign/fulcio/pkg/config"
"github.com/securesign/fulcio/pkg/generated/protobuf"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/create_tink_keyset/create_tink_keyset.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

"github.com/google/tink/go/keyset"
"github.com/google/tink/go/signature"
"github.com/sigstore/fulcio/pkg/ca/tinkca"
"github.com/securesign/fulcio/pkg/ca/tinkca"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion cmd/fetch_ca_cert/fetch_ca_cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
privateca "cloud.google.com/go/security/privateca/apiv1"
"cloud.google.com/go/security/privateca/apiv1/privatecapb"
"github.com/google/tink/go/keyset"
"github.com/sigstore/fulcio/pkg/ca/tinkca"
"github.com/securesign/fulcio/pkg/ca/tinkca"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"google.golang.org/protobuf/types/known/durationpb"

Expand Down
2 changes: 1 addition & 1 deletion examples/request-certificate/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"log"
"net/url"

fulciopb "github.com/sigstore/fulcio/pkg/generated/protobuf"
fulciopb "github.com/securesign/fulcio/pkg/generated/protobuf"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/sigstore/sigstore/pkg/oauthflow"
"github.com/sigstore/sigstore/pkg/signature"
Expand Down
2 changes: 1 addition & 1 deletion federation/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"os"
"path/filepath"

"github.com/sigstore/fulcio/pkg/config"
"github.com/securesign/fulcio/pkg/config"
"gopkg.in/yaml.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/sigstore/fulcio
module github.com/securesign/fulcio

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion hack/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/sigstore/fulcio/hack/tools
module github.com/securesign/fulcio/hack/tools

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package main
import (
"context"

"github.com/sigstore/fulcio/cmd/app"
"github.com/securesign/fulcio/cmd/app"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/baseca/baseca.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
ct "github.com/google/certificate-transparency-go"
cttls "github.com/google/certificate-transparency-go/tls"
ctx509 "github.com/google/certificate-transparency-go/x509"
"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/identity"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions pkg/ca/baseca/baseca_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import (
"testing"

ct "github.com/google/certificate-transparency-go"
"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/certificate"
"github.com/sigstore/fulcio/pkg/test"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/certificate"
"github.com/securesign/fulcio/pkg/test"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/sigstore/sigstore/pkg/signature"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"crypto"
"crypto/x509"

"github.com/sigstore/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/identity"
)

// CertificateAuthority implements certificate creation with a detached SCT and
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"errors"
"time"

"github.com/sigstore/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/identity"
"github.com/sigstore/sigstore/pkg/cryptoutils"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"testing"
"time"

"github.com/sigstore/fulcio/pkg/test"
"github.com/securesign/fulcio/pkg/test"
"github.com/sigstore/sigstore/pkg/signature"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/embeddedca.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"crypto"

ct "github.com/google/certificate-transparency-go"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/identity"
)

// EmbeddedSCTCA implements precertificate and certificate issuance. Certificates will contain an embedded SCT.
Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/ephemeralca/ephemeral.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"crypto/x509/pkix"
"time"

"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/ca/baseca"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca/baseca"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/sigstore/sigstore/pkg/signature"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/fileca/fileca.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"crypto/x509"

"github.com/fsnotify/fsnotify"
"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/ca/baseca"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca/baseca"
)

type fileCA struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/fileca/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"os"
"path/filepath"

"github.com/sigstore/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"go.step.sm/crypto/pemutil"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/googleca/v1/googleca.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (

privateca "cloud.google.com/go/security/privateca/apiv1"
"cloud.google.com/go/security/privateca/apiv1/privatecapb"
"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/identity"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"google.golang.org/api/iterator"
"google.golang.org/api/option"
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/googleca/v1/googleca_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"time"

"cloud.google.com/go/security/privateca/apiv1/privatecapb"
"github.com/sigstore/fulcio/pkg/challenges"
"github.com/securesign/fulcio/pkg/challenges"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"google.golang.org/protobuf/proto"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/kmsca/kmsca.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"crypto"
"crypto/x509"

"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/ca/baseca"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca/baseca"
"github.com/sigstore/sigstore/pkg/signature"
"github.com/sigstore/sigstore/pkg/signature/kms"

Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/kmsca/kmsca_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"strings"
"testing"

"github.com/sigstore/fulcio/pkg/test"
"github.com/securesign/fulcio/pkg/test"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/sigstore/sigstore/pkg/signature/kms/fake"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/pkcs11ca/pkcs11ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"path/filepath"

"github.com/ThalesIgnite/crypto11"
"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/ca/baseca"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca/baseca"
)

type Params struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/pkcs11ca/pkcs11canocgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package pkcs11ca
import (
"errors"

"github.com/sigstore/fulcio/pkg/ca/baseca"
"github.com/securesign/fulcio/pkg/ca/baseca"
)

type PKCS11CA struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/signercerts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"reflect"
"testing"

"github.com/sigstore/fulcio/pkg/test"
"github.com/securesign/fulcio/pkg/test"
"github.com/sigstore/sigstore/pkg/cryptoutils"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/ca/tinkca/tinkca.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"path/filepath"
"strings"

"github.com/sigstore/fulcio/pkg/ca"
"github.com/sigstore/fulcio/pkg/ca/baseca"
"github.com/securesign/fulcio/pkg/ca"
"github.com/securesign/fulcio/pkg/ca/baseca"
"github.com/sigstore/sigstore/pkg/cryptoutils"

"github.com/google/tink/go/core/registry"
Expand Down
2 changes: 1 addition & 1 deletion pkg/ca/tinkca/tinkca_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/google/tink/go/aead"
"github.com/google/tink/go/keyset"
"github.com/google/tink/go/signature"
"github.com/sigstore/fulcio/pkg/test"
"github.com/securesign/fulcio/pkg/test"
"github.com/sigstore/sigstore/pkg/cryptoutils"
_ "github.com/sigstore/sigstore/pkg/signature/kms/fake"
)
Expand Down
20 changes: 10 additions & 10 deletions pkg/challenges/challenges.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ import (
"fmt"
"strings"

"github.com/sigstore/fulcio/pkg/config"
"github.com/sigstore/fulcio/pkg/identity"
"github.com/sigstore/fulcio/pkg/identity/buildkite"
"github.com/sigstore/fulcio/pkg/identity/email"
"github.com/sigstore/fulcio/pkg/identity/github"
"github.com/sigstore/fulcio/pkg/identity/gitlabcom"
"github.com/sigstore/fulcio/pkg/identity/kubernetes"
"github.com/sigstore/fulcio/pkg/identity/spiffe"
"github.com/sigstore/fulcio/pkg/identity/uri"
"github.com/sigstore/fulcio/pkg/identity/username"
"github.com/securesign/fulcio/pkg/config"
"github.com/securesign/fulcio/pkg/identity"
"github.com/securesign/fulcio/pkg/identity/buildkite"
"github.com/securesign/fulcio/pkg/identity/email"
"github.com/securesign/fulcio/pkg/identity/github"
"github.com/securesign/fulcio/pkg/identity/gitlabcom"
"github.com/securesign/fulcio/pkg/identity/kubernetes"
"github.com/securesign/fulcio/pkg/identity/spiffe"
"github.com/securesign/fulcio/pkg/identity/uri"
"github.com/securesign/fulcio/pkg/identity/username"

"github.com/coreos/go-oidc/v3/oidc"
"github.com/sigstore/sigstore/pkg/cryptoutils"
Expand Down
4 changes: 2 additions & 2 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (

"github.com/coreos/go-oidc/v3/oidc"
lru "github.com/hashicorp/golang-lru"
fulciogrpc "github.com/sigstore/fulcio/pkg/generated/protobuf"
"github.com/sigstore/fulcio/pkg/log"
fulciogrpc "github.com/securesign/fulcio/pkg/generated/protobuf"
"github.com/securesign/fulcio/pkg/log"
"github.com/spiffe/go-spiffe/v2/spiffeid"
)

Expand Down
Loading

0 comments on commit d7b7c9e

Please sign in to comment.