Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #483 from gdbelvin/move
Browse files Browse the repository at this point in the history
move to google/keytransparency
  • Loading branch information
cesarghali committed Jan 18, 2017
2 parents f8e8fdd + 8aad872 commit 5722417
Show file tree
Hide file tree
Showing 63 changed files with 197 additions and 197 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Expand Up @@ -28,7 +28,7 @@ go get -u github.com/client9/misspell/cmd/misspell
### <a name="submit"></a> Submission Guidelines
Before you submit your pull request consider the following guidelines:

* Search [GitHub](https://github.com/google/key-transparency/pulls)
* Search [GitHub](https://github.com/google/keytransparency/pulls)
for an open or closed Pull Request that relates to your submission. You don't
want to duplicate effort.
* **Please sign our [Contributor License Agreement (CLA)](#cla)** before sending pull
Expand Down Expand Up @@ -111,6 +111,6 @@ changes to be accepted, the CLA must be signed. It's a quick process, we promise
[print, sign and one of scan+email, fax or mail the form][corporate-cla].

[corporate-cla]: http://code.google.com/legal/corporate-cla-v1.0.html
[github]: https://github.com/google/key-transparency
[github]: https://github.com/google/keytransparency
[individual-cla]: http://code.google.com/legal/individual-cla-v1.0.html
[issues]: https://github.com/google/key-transparency/issues
[issues]: https://github.com/google/keytransparency/issues
16 changes: 8 additions & 8 deletions README.md
@@ -1,8 +1,8 @@
# Key Transparency

[![Build Status](https://travis-ci.org/google/key-transparency.svg?branch=master)](https://travis-ci.org/google/key-transparency)
[![Go Report Card](https://goreportcard.com/badge/github.com/google/key-transparency)](https://goreportcard.com/report/github.com/google/key-transparency)
[![GoDoc](https://godoc.org/github.com/google/key-transparency?status.svg)](https://godoc.org/github.com/google/key-transparency)
[![Build Status](https://travis-ci.org/google/keytransparency.svg?branch=master)](https://travis-ci.org/google/keytransparency)
[![Go Report Card](https://goreportcard.com/badge/github.com/google/keytransparency)](https://goreportcard.com/report/github.com/google/keytransparency)
[![GoDoc](https://godoc.org/github.com/google/keytransparency?status.svg)](https://godoc.org/github.com/google/keytransparency)

![Key Transparency Logo](docs/images/logo.png)

Expand All @@ -24,7 +24,7 @@ account has been active and stable before trusting it.
Key Transparency is inspired by [CONIKS](https://eprint.iacr.org/2014/1004.pdf)
and [Certificate Transparency](https://www.certificate-transparency.org/).
It is a work-in-progress with the [following
milestones](https://github.com/google/key-transparency/milestones) under
milestones](https://github.com/google/keytransparency/milestones) under
development.


Expand All @@ -38,8 +38,8 @@ Set `$GOPATH` variable to point to your Go workspace directory and add `$GOPATH/
```sh
apt-get install build-essential libssl-dev
go get -u github.com/kardianos/govendor
go get -u github.com/google/key-transparency/cmd/...
cd $GOPATH/src/github.com/google/key-transparency
go get -u github.com/google/keytransparency/cmd/...
cd $GOPATH/src/github.com/google/keytransparency
govendor sync
```

Expand Down Expand Up @@ -95,8 +95,8 @@ Set `$GOPATH` variable to point to your Go workspace directory and add `$GOPATH/
apt-get install build-essential libssl-dev
go get -u github.com/mattn/goreman
go get -u github.com/kardianos/govendor
go get -u github.com/google/key-transparency/...
cd $GOPATH/src/github.com/google/key-transparency
go get -u github.com/google/keytransparency/...
cd $GOPATH/src/github.com/google/keytransparency
govendor sync
```
Expand Down
2 changes: 1 addition & 1 deletion cmd/key-transparency-client/cmd/history.go
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/spf13/viper"
"golang.org/x/net/context"

"github.com/google/key-transparency/core/proto/ctmap"
"github.com/google/keytransparency/core/proto/ctmap"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions cmd/key-transparency-client/cmd/keys.go
Expand Up @@ -23,13 +23,13 @@ import (
"text/tabwriter"
"time"

"github.com/google/key-transparency/core/keystore"
"github.com/google/key-transparency/core/signatures/p256"
"github.com/google/keytransparency/core/keystore"
"github.com/google/keytransparency/core/signatures/p256"

"github.com/golang/protobuf/ptypes"
"github.com/spf13/cobra"

kmpb "github.com/google/key-transparency/core/proto/keymaster"
kmpb "github.com/google/keytransparency/core/proto/keymaster"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/key-transparency-client/cmd/post.go
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/spf13/viper"
"golang.org/x/net/context"

tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

var (
Expand Down
18 changes: 9 additions & 9 deletions cmd/key-transparency-client/cmd/root.go
Expand Up @@ -22,14 +22,14 @@ import (
"os"
"time"

"github.com/google/key-transparency/cmd/key-transparency-client/grpcc"
"github.com/google/key-transparency/core/client/ctlog"
"github.com/google/key-transparency/core/client/kt"
"github.com/google/key-transparency/core/signatures"
"github.com/google/key-transparency/core/signatures/factory"
"github.com/google/key-transparency/core/vrf"
"github.com/google/key-transparency/core/vrf/p256"
"github.com/google/key-transparency/impl/google/authentication"
"github.com/google/keytransparency/cmd/key-transparency-client/grpcc"
"github.com/google/keytransparency/core/client/ctlog"
"github.com/google/keytransparency/core/client/kt"
"github.com/google/keytransparency/core/signatures"
"github.com/google/keytransparency/core/signatures/factory"
"github.com/google/keytransparency/core/vrf"
"github.com/google/keytransparency/core/vrf/p256"
"github.com/google/keytransparency/impl/google/authentication"

"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand All @@ -39,7 +39,7 @@ import (
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/credentials/oauth"

pb "github.com/google/key-transparency/impl/proto/keytransparency_v1_service"
pb "github.com/google/keytransparency/impl/proto/keytransparency_v1_service"
)

var (
Expand Down
18 changes: 9 additions & 9 deletions cmd/key-transparency-client/grpcc/grpc_client.go
Expand Up @@ -25,20 +25,20 @@ import (
"log"
"time"

"github.com/google/key-transparency/core/client/ctlog"
"github.com/google/key-transparency/core/client/kt"
"github.com/google/key-transparency/core/signatures"
"github.com/google/key-transparency/core/tree/sparse"
tv "github.com/google/key-transparency/core/tree/sparse/verifier"
"github.com/google/key-transparency/core/vrf"
"github.com/google/keytransparency/core/client/ctlog"
"github.com/google/keytransparency/core/client/kt"
"github.com/google/keytransparency/core/signatures"
"github.com/google/keytransparency/core/tree/sparse"
tv "github.com/google/keytransparency/core/tree/sparse/verifier"
"github.com/google/keytransparency/core/vrf"

"github.com/golang/protobuf/proto"
"golang.org/x/net/context"
"google.golang.org/grpc"

"github.com/google/key-transparency/core/proto/ctmap"
tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
spb "github.com/google/key-transparency/impl/proto/keytransparency_v1_service"
"github.com/google/keytransparency/core/proto/ctmap"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
spb "github.com/google/keytransparency/impl/proto/keytransparency_v1_service"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/key-transparency-client/main.go
Expand Up @@ -14,7 +14,7 @@

package main

import "github.com/google/key-transparency/cmd/key-transparency-client/cmd"
import "github.com/google/keytransparency/cmd/key-transparency-client/cmd"

func main() {
cmd.Execute()
Expand Down
24 changes: 12 additions & 12 deletions cmd/key-transparency-server/frontend.go
Expand Up @@ -24,17 +24,17 @@ import (
"sync/atomic"
"time"

"github.com/google/key-transparency/core/keyserver"
"github.com/google/key-transparency/core/mutator/entry"
"github.com/google/key-transparency/core/vrf"
"github.com/google/key-transparency/core/vrf/p256"
"github.com/google/key-transparency/impl/etcd/queue"
"github.com/google/key-transparency/impl/google/authentication"
"github.com/google/key-transparency/impl/sql/appender"
"github.com/google/key-transparency/impl/sql/commitments"
"github.com/google/key-transparency/impl/sql/engine"
"github.com/google/key-transparency/impl/sql/sqlhist"
"github.com/google/key-transparency/impl/transaction"
"github.com/google/keytransparency/core/keyserver"
"github.com/google/keytransparency/core/mutator/entry"
"github.com/google/keytransparency/core/vrf"
"github.com/google/keytransparency/core/vrf/p256"
"github.com/google/keytransparency/impl/etcd/queue"
"github.com/google/keytransparency/impl/google/authentication"
"github.com/google/keytransparency/impl/sql/appender"
"github.com/google/keytransparency/impl/sql/commitments"
"github.com/google/keytransparency/impl/sql/engine"
"github.com/google/keytransparency/impl/sql/sqlhist"
"github.com/google/keytransparency/impl/transaction"

"github.com/coreos/etcd/clientv3"
"github.com/golang/protobuf/jsonpb"
Expand All @@ -45,7 +45,7 @@ import (
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/reflection"

pb "github.com/google/key-transparency/impl/proto/keytransparency_v1_service"
pb "github.com/google/keytransparency/impl/proto/keytransparency_v1_service"
)

var (
Expand Down
18 changes: 9 additions & 9 deletions cmd/key-transparency-signer/backend.go
Expand Up @@ -23,15 +23,15 @@ import (
"sync"
"time"

"github.com/google/key-transparency/core/mutator/entry"
"github.com/google/key-transparency/core/signatures"
"github.com/google/key-transparency/core/signatures/factory"
"github.com/google/key-transparency/core/signer"
"github.com/google/key-transparency/impl/etcd/queue"
"github.com/google/key-transparency/impl/sql/appender"
"github.com/google/key-transparency/impl/sql/engine"
"github.com/google/key-transparency/impl/sql/sqlhist"
"github.com/google/key-transparency/impl/transaction"
"github.com/google/keytransparency/core/mutator/entry"
"github.com/google/keytransparency/core/signatures"
"github.com/google/keytransparency/core/signatures/factory"
"github.com/google/keytransparency/core/signer"
"github.com/google/keytransparency/impl/etcd/queue"
"github.com/google/keytransparency/impl/sql/appender"
"github.com/google/keytransparency/impl/sql/engine"
"github.com/google/keytransparency/impl/sql/sqlhist"
"github.com/google/keytransparency/impl/transaction"

"github.com/coreos/etcd/clientv3"
"golang.org/x/net/context"
Expand Down
2 changes: 1 addition & 1 deletion core/appender/appender.go
Expand Up @@ -15,7 +15,7 @@
package appender

import (
"github.com/google/key-transparency/core/transaction"
"github.com/google/keytransparency/core/transaction"

"golang.org/x/net/context"
)
Expand Down
2 changes: 1 addition & 1 deletion core/client/ctlog/client_ct.go
Expand Up @@ -31,7 +31,7 @@ import (
"github.com/google/certificate-transparency/go/tls"
"golang.org/x/net/context"

"github.com/google/key-transparency/core/proto/ctmap"
"github.com/google/keytransparency/core/proto/ctmap"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion core/client/ctlog/client_ct_test.go
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/google/certificate-transparency/go/jsonclient"
"golang.org/x/net/context"

"github.com/google/key-transparency/core/proto/ctmap"
"github.com/google/keytransparency/core/proto/ctmap"
)

const (
Expand Down
10 changes: 5 additions & 5 deletions core/client/kt/requests.go
Expand Up @@ -17,15 +17,15 @@ package kt
import (
"fmt"

"github.com/google/key-transparency/core/commitments"
"github.com/google/key-transparency/core/signatures"
"github.com/google/key-transparency/core/vrf"
"github.com/google/keytransparency/core/commitments"
"github.com/google/keytransparency/core/signatures"
"github.com/google/keytransparency/core/vrf"

"github.com/benlaurie/objecthash/go/objecthash"
"github.com/golang/protobuf/proto"

"github.com/google/key-transparency/core/proto/ctmap"
tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
"github.com/google/keytransparency/core/proto/ctmap"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

// CreateUpdateEntryRequest creates UpdateEntryRequest given GetEntryResponse,
Expand Down
14 changes: 7 additions & 7 deletions core/client/kt/verify.go
Expand Up @@ -19,19 +19,19 @@ import (
"io/ioutil"
"log"

"github.com/google/key-transparency/core/client/ctlog"
"github.com/google/key-transparency/core/commitments"
"github.com/google/key-transparency/core/signatures"
"github.com/google/key-transparency/core/tree/sparse"
tv "github.com/google/key-transparency/core/tree/sparse/verifier"
"github.com/google/key-transparency/core/vrf"
"github.com/google/keytransparency/core/client/ctlog"
"github.com/google/keytransparency/core/commitments"
"github.com/google/keytransparency/core/signatures"
"github.com/google/keytransparency/core/tree/sparse"
tv "github.com/google/keytransparency/core/tree/sparse/verifier"
"github.com/google/keytransparency/core/vrf"

"github.com/golang/protobuf/proto"
ct "github.com/google/certificate-transparency/go"
"github.com/google/certificate-transparency/go/tls"
"golang.org/x/net/context"

tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions core/client/kt/verify_test.go
Expand Up @@ -17,12 +17,12 @@ package kt
import (
"testing"

"github.com/google/key-transparency/core/commitments"
"github.com/google/keytransparency/core/commitments"

"github.com/golang/protobuf/proto"

ctmap "github.com/google/key-transparency/core/proto/ctmap"
tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
ctmap "github.com/google/keytransparency/core/proto/ctmap"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion core/commitments/commitments.go
Expand Up @@ -28,7 +28,7 @@ import (

"golang.org/x/net/context"

tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

const (
Expand Down
20 changes: 10 additions & 10 deletions core/keyserver/keyserver.go
Expand Up @@ -18,22 +18,22 @@ package keyserver
import (
"log"

"github.com/google/key-transparency/core/appender"
"github.com/google/key-transparency/core/authentication"
"github.com/google/key-transparency/core/commitments"
"github.com/google/key-transparency/core/mutator"
"github.com/google/key-transparency/core/queue"
"github.com/google/key-transparency/core/transaction"
"github.com/google/key-transparency/core/tree"
"github.com/google/key-transparency/core/vrf"
"github.com/google/keytransparency/core/appender"
"github.com/google/keytransparency/core/authentication"
"github.com/google/keytransparency/core/commitments"
"github.com/google/keytransparency/core/mutator"
"github.com/google/keytransparency/core/queue"
"github.com/google/keytransparency/core/transaction"
"github.com/google/keytransparency/core/tree"
"github.com/google/keytransparency/core/vrf"

"github.com/golang/protobuf/proto"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"

"github.com/google/key-transparency/core/proto/ctmap"
tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
"github.com/google/keytransparency/core/proto/ctmap"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions core/keyserver/keyserver_test.go
Expand Up @@ -21,16 +21,16 @@ import (
"reflect"
"testing"

"github.com/google/key-transparency/core/authentication"
"github.com/google/key-transparency/core/queue"
"github.com/google/key-transparency/core/transaction"
"github.com/google/keytransparency/core/authentication"
"github.com/google/keytransparency/core/queue"
"github.com/google/keytransparency/core/transaction"

"github.com/golang/protobuf/proto"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"

tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

func TestListEntryHistory(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions core/keyserver/validate.go
Expand Up @@ -22,12 +22,12 @@ import (
"fmt"
"time"

"github.com/google/key-transparency/core/commitments"
"github.com/google/key-transparency/core/vrf"
"github.com/google/keytransparency/core/commitments"
"github.com/google/keytransparency/core/vrf"

"github.com/golang/protobuf/proto"

tpb "github.com/google/key-transparency/core/proto/keytransparency_v1_types"
tpb "github.com/google/keytransparency/core/proto/keytransparency_v1_types"
)

// Maximum period of time to allow between CreationTime and server time.
Expand Down

0 comments on commit 5722417

Please sign in to comment.