Skip to content

Commit

Permalink
all: change module name to filippo.io/age
Browse files Browse the repository at this point in the history
No need to tie ourselves to GitHub.

The redirect is not set up yet, but as long as there is a replace in the
go.mod the tool can't be installed with "go get" anyway.

Not using age-tool.com because A) I don't actually like the domain and
B) it should be about the spec not the specific implementation.
  • Loading branch information
FiloSottile committed Dec 7, 2019
1 parent aefae7c commit 93ea796
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion cmd/age-keygen/keygen.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"os" "os"
"time" "time"


"github.com/FiloSottile/age/internal/age" "filippo.io/age/internal/age"
) )


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


"github.com/FiloSottile/age/internal/age" "filippo.io/age/internal/age"
"golang.org/x/crypto/ssh/terminal" "golang.org/x/crypto/ssh/terminal"
) )


Expand Down
4 changes: 2 additions & 2 deletions cmd/age/encrypted_keys.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"fmt" "fmt"
"os" "os"


"github.com/FiloSottile/age/internal/age" "filippo.io/age/internal/age"
"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/terminal" "golang.org/x/crypto/ssh/terminal"
) )
Expand Down
2 changes: 1 addition & 1 deletion cmd/age/parse.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"os" "os"
"strings" "strings"


"github.com/FiloSottile/age/internal/age" "filippo.io/age/internal/age"
"golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh"
) )


Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/FiloSottile/age module filippo.io/age


go 1.13 go 1.13


Expand Down
4 changes: 2 additions & 2 deletions internal/age/age.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"fmt" "fmt"
"io" "io"


"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"github.com/FiloSottile/age/internal/stream" "filippo.io/age/internal/stream"
) )


type Identity interface { type Identity interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/age/age_test.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"


"github.com/FiloSottile/age/internal/age" "filippo.io/age/internal/age"
"golang.org/x/crypto/curve25519" "golang.org/x/crypto/curve25519"
) )


Expand Down
2 changes: 1 addition & 1 deletion internal/age/primitives.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"crypto/sha256" "crypto/sha256"
"io" "io"


"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/hkdf" "golang.org/x/crypto/hkdf"
) )
Expand Down
2 changes: 1 addition & 1 deletion internal/age/recipients_test.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"crypto/rsa" "crypto/rsa"
"testing" "testing"


"github.com/FiloSottile/age/internal/age" "filippo.io/age/internal/age"
"golang.org/x/crypto/curve25519" "golang.org/x/crypto/curve25519"
"golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh"
) )
Expand Down
2 changes: 1 addition & 1 deletion internal/age/scrypt.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"fmt" "fmt"
"strconv" "strconv"


"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/scrypt" "golang.org/x/crypto/scrypt"
) )
Expand Down
2 changes: 1 addition & 1 deletion internal/age/ssh.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"io" "io"
"math/big" "math/big"


"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/curve25519" "golang.org/x/crypto/curve25519"
"golang.org/x/crypto/hkdf" "golang.org/x/crypto/hkdf"
Expand Down
2 changes: 1 addition & 1 deletion internal/age/x25519.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"io" "io"
"strings" "strings"


"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/curve25519" "golang.org/x/crypto/curve25519"
"golang.org/x/crypto/hkdf" "golang.org/x/crypto/hkdf"
Expand Down
4 changes: 2 additions & 2 deletions internal/stream/stream_test.go
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"io" "io"
"testing" "testing"


"github.com/FiloSottile/age/internal/format" "filippo.io/age/internal/format"
"github.com/FiloSottile/age/internal/stream" "filippo.io/age/internal/stream"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"
) )


Expand Down

0 comments on commit 93ea796

Please sign in to comment.