Skip to content

Commit

Permalink
github.com/flynn/tuf->github.com/theupdateframework/tuf
Browse files Browse the repository at this point in the history
Signed-off-by: Trishank Karthik Kuppusamy <[email protected]>
  • Loading branch information
trishankatdatadog committed Jul 29, 2020
1 parent 0512d79 commit 9d8af57
Show file tree
Hide file tree
Showing 43 changed files with 106 additions and 78 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The directories contain the following files:
### Install

```
go get github.com/flynn/go-tuf/cmd/tuf
go get github.com/theupdateframework/go-tuf/cmd/tuf
```

### Commands
Expand Down Expand Up @@ -506,6 +506,6 @@ TODO

## Client

For the client package, see https://godoc.org/github.com/flynn/go-tuf/client.
For the client package, see https://godoc.org/github.com/theupdateframework/go-tuf/client.

For the client CLI, see https://github.com/flynn/go-tuf/tree/master/cmd/tuf-client.
For the client CLI, see https://github.com/theupdateframework/go-tuf/tree/master/cmd/tuf-client.
6 changes: 3 additions & 3 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"io"
"io/ioutil"

"github.com/flynn/go-tuf/data"
"github.com/flynn/go-tuf/util"
"github.com/flynn/go-tuf/verify"
"github.com/theupdateframework/go-tuf/data"
"github.com/theupdateframework/go-tuf/util"
"github.com/theupdateframework/go-tuf/verify"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"testing"
"time"

tuf "github.com/flynn/go-tuf"
"github.com/flynn/go-tuf/data"
"github.com/flynn/go-tuf/util"
"github.com/flynn/go-tuf/verify"
tuf "github.com/theupdateframework/go-tuf"
"github.com/theupdateframework/go-tuf/data"
"github.com/theupdateframework/go-tuf/util"
"github.com/theupdateframework/go-tuf/verify"
. "gopkg.in/check.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion client/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"fmt"

"github.com/flynn/go-tuf/verify"
"github.com/theupdateframework/go-tuf/verify"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions client/interop_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
"os"
"path/filepath"

"github.com/flynn/go-tuf/data"
"github.com/flynn/go-tuf/util"
"github.com/theupdateframework/go-tuf/data"
"github.com/theupdateframework/go-tuf/util"
. "gopkg.in/check.v1"

goTufGenerator "github.com/flynn/go-tuf/client/testdata/go-tuf/generator"
goTufGenerator "github.com/theupdateframework/go-tuf/client/testdata/go-tuf/generator"
)

type InteropSuite struct{}
Expand Down
2 changes: 1 addition & 1 deletion client/leveldbstore/leveldbstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/storage"

tuf_client "github.com/flynn/go-tuf/client"
tuf_client "github.com/theupdateframework/go-tuf/client"
)

func FileLocalStore(path string) (tuf_client.LocalStore, error) {
Expand Down
8 changes: 4 additions & 4 deletions client/python_interop/python_interop_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import (
"strings"
"testing"

tuf "github.com/flynn/go-tuf"
client "github.com/flynn/go-tuf/client"
"github.com/flynn/go-tuf/data"
"github.com/flynn/go-tuf/util"
tuf "github.com/theupdateframework/go-tuf"
client "github.com/theupdateframework/go-tuf/client"
"github.com/theupdateframework/go-tuf/data"
"github.com/theupdateframework/go-tuf/util"
"golang.org/x/crypto/ed25519"
. "gopkg.in/check.v1"
)
Expand Down
4 changes: 2 additions & 2 deletions client/testdata/go-tuf-transition-M3/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"path/filepath"
"time"

tuf "github.com/flynn/go-tuf"
"github.com/flynn/go-tuf/sign"
tuf "github.com/theupdateframework/go-tuf"
"github.com/theupdateframework/go-tuf/sign"
)

var expirationDate = time.Date(2100, time.January, 1, 0, 0, 0, 0, time.UTC)
Expand Down
4 changes: 2 additions & 2 deletions client/testdata/go-tuf-transition-M4/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"path/filepath"
"time"

tuf "github.com/flynn/go-tuf"
"github.com/flynn/go-tuf/sign"
tuf "github.com/theupdateframework/go-tuf"
"github.com/theupdateframework/go-tuf/sign"
)

var expirationDate = time.Date(2100, time.January, 1, 0, 0, 0, 0, time.UTC)
Expand Down
2 changes: 1 addition & 1 deletion client/testdata/go-tuf/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"path/filepath"

"github.com/flynn/go-tuf/client/testdata/go-tuf/generator"
"github.com/theupdateframework/go-tuf/client/testdata/go-tuf/generator"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions client/testdata/go-tuf/generator/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"path/filepath"
"time"

tuf "github.com/flynn/go-tuf"
"github.com/flynn/go-tuf/sign"
tuf "github.com/theupdateframework/go-tuf"
"github.com/theupdateframework/go-tuf/sign"
)

var expirationDate = time.Date(2100, time.January, 1, 0, 0, 0, 0, time.UTC)
Expand Down
2 changes: 1 addition & 1 deletion client/testdata/tools/gen-keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"io/ioutil"
"time"

sign "github.com/flynn/go-tuf/sign"
sign "github.com/theupdateframework/go-tuf/sign"
)

var expirationDate = time.Date(2100, time.January, 1, 0, 0, 0, 0, time.UTC)
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Install

```
go get github.com/flynn/go-tuf/cmd/tuf-client
go get github.com/theupdateframework/go-tuf/cmd/tuf-client
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions cmd/tuf-client/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"

"github.com/flynn/go-docopt"
tuf "github.com/flynn/go-tuf/client"
"github.com/flynn/go-tuf/util"
tuf "github.com/theupdateframework/go-tuf/client"
"github.com/theupdateframework/go-tuf/util"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions cmd/tuf-client/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"

"github.com/flynn/go-docopt"
tuf "github.com/flynn/go-tuf/client"
"github.com/flynn/go-tuf/data"
tuf "github.com/theupdateframework/go-tuf/client"
"github.com/theupdateframework/go-tuf/data"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf-client/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/dustin/go-humanize"
"github.com/flynn/go-docopt"
tuf "github.com/flynn/go-tuf/client"
tuf "github.com/theupdateframework/go-tuf/client"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions cmd/tuf-client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"

docopt "github.com/flynn/go-docopt"
tuf "github.com/flynn/go-tuf/client"
tuf_leveldbstore "github.com/flynn/go-tuf/client/leveldbstore"
tuf "github.com/theupdateframework/go-tuf/client"
tuf_leveldbstore "github.com/theupdateframework/go-tuf/client/leveldbstore"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"

"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/clean.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/gen_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
6 changes: 2 additions & 4 deletions cmd/tuf/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"time"

docopt "github.com/flynn/go-docopt"
tuf "github.com/flynn/go-tuf"
"github.com/flynn/go-tuf/util"
tuf "github.com/theupdateframework/go-tuf"
"github.com/theupdateframework/go-tuf/util"
"golang.org/x/crypto/ssh/terminal"
)

Expand Down Expand Up @@ -127,8 +127,6 @@ func getPassphrase(role string, confirm bool) ([]byte, error) {
return []byte(pass), nil
}

stdin := bufio.NewReader(os.Stdin)

fmt.Printf("Enter %s keys passphrase: ", role)
passphrase, err := terminal.ReadPassword(int(syscall.Stdin))
fmt.Println()
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/regenerate.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"

"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"

"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/revoke_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/root_keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tuf/timestamp.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/flynn/go-docopt"
"github.com/flynn/go-tuf"
"github.com/theupdateframework/go-tuf"
)

func init() {
Expand Down
8 changes: 6 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
module github.com/flynn/go-tuf
module github.com/theupdateframework/go-tuf

go 1.12
go 1.14

require (
github.com/dustin/go-humanize v1.0.0
github.com/flynn/go-docopt v0.0.0-20140912013429-f6dd2ebbb31e
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/syndtr/goleveldb v1.0.0
github.com/tent/canonical-json-go v0.0.0-20130607151641-96e4ba3a7613
golang.org/x/crypto v0.0.0-20190424203555-c05e17bb3b2d
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
)
26 changes: 26 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,12 +1,38 @@
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
github.com/flynn/go-docopt v0.0.0-20140912013429-f6dd2ebbb31e h1:Ss/B3/5wWRh8+emnK0++g5zQzwDTi30W10pKxKc4JXI=
github.com/flynn/go-docopt v0.0.0-20140912013429-f6dd2ebbb31e/go.mod h1:HyVoz1Mz5Co8TFO8EupIdlcpwShBmY98dkT2xeHkvEI=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db h1:woRePGFeVFfLKN/pOkfl+p/TAqKOfFu+7KPlMVpok/w=
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
github.com/tent/canonical-json-go v0.0.0-20130607151641-96e4ba3a7613 h1:iGnD/q9160NWqKZZ5vY4p0dMiYMRknzctfSkqA4nBDw=
github.com/tent/canonical-json-go v0.0.0-20130607151641-96e4ba3a7613/go.mod h1:g6AnIpDSYMcphz193otpSIzN+11Rs+AAIIC6rm1enug=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20190424203555-c05e17bb3b2d h1:adrbvkTDn9rGnXg2IJDKozEpXXLZN89pdIA+Syt4/u0=
golang.org/x/crypto v0.0.0-20190424203555-c05e17bb3b2d/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU=
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
8 changes: 4 additions & 4 deletions local_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"path/filepath"
"strings"

"github.com/flynn/go-tuf/data"
"github.com/flynn/go-tuf/encrypted"
"github.com/flynn/go-tuf/sign"
"github.com/flynn/go-tuf/util"
"github.com/theupdateframework/go-tuf/data"
"github.com/theupdateframework/go-tuf/encrypted"
"github.com/theupdateframework/go-tuf/sign"
"github.com/theupdateframework/go-tuf/util"
)

func MemoryStore(meta map[string]json.RawMessage, files map[string][]byte) LocalStore {
Expand Down
Loading

0 comments on commit 9d8af57

Please sign in to comment.