all: change module name to filippo.io/age

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.
This commit is contained in:
Filippo Valsorda
2019-12-06 23:00:57 -05:00
parent aefae7ca0f
commit 93ea79628d
13 changed files with 16 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ import (
"os"
"time"
"github.com/FiloSottile/age/internal/age"
"filippo.io/age/internal/age"
)
func main() {

View File

@@ -14,7 +14,7 @@ import (
"log"
"os"
"github.com/FiloSottile/age/internal/age"
"filippo.io/age/internal/age"
"golang.org/x/crypto/ssh/terminal"
)

View File

@@ -12,8 +12,8 @@ import (
"fmt"
"os"
"github.com/FiloSottile/age/internal/age"
"github.com/FiloSottile/age/internal/format"
"filippo.io/age/internal/age"
"filippo.io/age/internal/format"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/terminal"
)

View File

@@ -15,7 +15,7 @@ import (
"os"
"strings"
"github.com/FiloSottile/age/internal/age"
"filippo.io/age/internal/age"
"golang.org/x/crypto/ssh"
)

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/FiloSottile/age
module filippo.io/age
go 1.13

View File

@@ -14,8 +14,8 @@ import (
"fmt"
"io"
"github.com/FiloSottile/age/internal/format"
"github.com/FiloSottile/age/internal/stream"
"filippo.io/age/internal/format"
"filippo.io/age/internal/stream"
)
type Identity interface {

View File

@@ -13,7 +13,7 @@ import (
"io/ioutil"
"testing"
"github.com/FiloSottile/age/internal/age"
"filippo.io/age/internal/age"
"golang.org/x/crypto/curve25519"
)

View File

@@ -11,7 +11,7 @@ import (
"crypto/sha256"
"io"
"github.com/FiloSottile/age/internal/format"
"filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/hkdf"
)

View File

@@ -13,7 +13,7 @@ import (
"crypto/rsa"
"testing"
"github.com/FiloSottile/age/internal/age"
"filippo.io/age/internal/age"
"golang.org/x/crypto/curve25519"
"golang.org/x/crypto/ssh"
)

View File

@@ -12,7 +12,7 @@ import (
"fmt"
"strconv"
"github.com/FiloSottile/age/internal/format"
"filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/scrypt"
)

View File

@@ -17,7 +17,7 @@ import (
"io"
"math/big"
"github.com/FiloSottile/age/internal/format"
"filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/curve25519"
"golang.org/x/crypto/hkdf"

View File

@@ -14,7 +14,7 @@ import (
"io"
"strings"
"github.com/FiloSottile/age/internal/format"
"filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/curve25519"
"golang.org/x/crypto/hkdf"

View File

@@ -13,8 +13,8 @@ import (
"io"
"testing"
"github.com/FiloSottile/age/internal/format"
"github.com/FiloSottile/age/internal/stream"
"filippo.io/age/internal/format"
"filippo.io/age/internal/stream"
"golang.org/x/crypto/chacha20poly1305"
)