Skip to content

Commit

Permalink
age: move package from filippo.io/age/age to filippo.io/age πŸ€¦β€β™‚οΈ
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Jun 28, 2020
1 parent e609359 commit 189041b
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion age/age.go β†’ age.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// For most use cases, use the Encrypt and Decrypt functions with
// X25519Recipient and X25519Identity. If passphrase encryption is required, use
// ScryptRecipient and ScryptIdentity. For compatibility with existing SSH keys
// use the filippo.io/age/agessh package.
// use the filippo.io/agessh package.

This comment has been minimized.

Copy link
@mohammed90

mohammed90 Jun 28, 2020

Was this intentional too? Thankfully it's just a comment.

This comment has been minimized.

Copy link
@FiloSottile

FiloSottile Jun 28, 2020

Author Owner

Nope! Good catch, thank you.

//
// Age encrypted files are binary and not malleable, for encoding them as text,
// use the filippo.io/age/armor package.
Expand Down
2 changes: 1 addition & 1 deletion age/age_test.go β†’ age_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"log"
"testing"

"filippo.io/age/age"
"filippo.io/age"
)

func ExampleEncrypt() {
Expand Down
2 changes: 1 addition & 1 deletion agessh/agessh.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"io"
"math/big"

"filippo.io/age/age"
"filippo.io/age"
"filippo.io/age/internal/format"
"golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/curve25519"
Expand Down
2 changes: 1 addition & 1 deletion agessh/encrypted_keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"crypto/rsa"
"fmt"

"filippo.io/age/age"
"filippo.io/age"
"golang.org/x/crypto/ssh"
)

Expand Down
2 changes: 1 addition & 1 deletion armor/armor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strings"
"testing"

"filippo.io/age/age"
"filippo.io/age"
"filippo.io/age/armor"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/age-keygen/keygen.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"os"
"time"

"filippo.io/age/age"
"filippo.io/age"
"golang.org/x/crypto/ssh/terminal"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/age/age.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"os"
"strings"

"filippo.io/age/age"
"filippo.io/age"
"filippo.io/age/armor"
"golang.org/x/crypto/ssh/terminal"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/age/age_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
"testing"

"filippo.io/age/age"
"filippo.io/age"
)

func TestVectors(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/age/encrypted_keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"os"

"filippo.io/age/age"
"filippo.io/age"
"golang.org/x/crypto/ssh/terminal"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/age/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"os"
"strings"

"filippo.io/age/age"
"filippo.io/age"
"filippo.io/age/agessh"
"golang.org/x/crypto/ssh"
)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion age/recipients_test.go β†’ recipients_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"crypto/rand"
"testing"

"filippo.io/age/age"
"filippo.io/age"
"filippo.io/age/internal/format"
)

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 189041b

Please sign in to comment.