Skip to content

Commit

Permalink
zmanda: fork from the github.com/jsipprell/keyctl
Browse files Browse the repository at this point in the history
  • Loading branch information
konidev20 committed Nov 21, 2024
1 parent 36ca026 commit 1f2dd05
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![GoDoc](https://godoc.org/github.com/jsipprell/keyctl?status.svg)](https://godoc.org/github.com/jsipprell/keyctl)
[![GoDoc](https://godoc.org/github.com/zmanda/keyctl?status.svg)](https://godoc.org/github.com/zmanda/keyctl)
[![Build Status](https://travis-ci.org/jsipprell/keyctl.svg?branch=master)](https://travis-ci.org/jsipprell/keyctl)

# keyctl
Expand All @@ -21,7 +21,7 @@ package main

import (
"log"
"github.com/jsipprell/keyctl"
"github.com/zmanda/keyctl"
)

func main() {
Expand All @@ -48,7 +48,7 @@ package main

import (
"log"
"github.com/jsipprell/keyctl"
"github.com/zmanda/keyctl"
)

func main() {
Expand Down
11 changes: 10 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
module github.com/jsipprell/keyctl
module github.com/zmanda/keyctl

go 1.22.3

require golang.org/x/crypto v0.29.0

require (
golang.org/x/sys v0.27.0 // indirect
golang.org/x/term v0.26.0 // indirect
)
7 changes: 7 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

golang.org/x/crypto v0.29.0 h1:L5SG1JTTXupVV3n6sUqMTeWbjAyfPwoda2DLX8J8FrQ=
golang.org/x/crypto v0.29.0/go.mod h1:+F4F4N5hv6v38hfeYwTdx20oUvLLc+QfrE9Ax9HtgRg=
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.26.0 h1:WEQa6V3Gja/BhNxg540hBip/kkaYtRg3cxg4oXSw4AU=
golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E=
6 changes: 3 additions & 3 deletions pgp/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![GoDoc](https://godoc.org/github.com/jsipprell/keyctl/pgp?status.svg)](https://godoc.org/github.com/jsipprell/keyctl/pgp)
[![GoDoc](https://godoc.org/github.com/zmanda/keyctl/pgp?status.svg)](https://godoc.org/github.com/zmanda/keyctl/pgp)

# keyctl/pgp

Expand All @@ -23,8 +23,8 @@ import (
"io"
"log"
"golang.org/x/crypto/openpgp"
"github.com/jsipprell/keyctl"
"github.com/jsipprell/keyctl/pgp"
"github.com/zmanda/keyctl"
"github.com/zmanda/keyctl/pgp"
)

func decryptReader(r io.Reader, pgpKeyring openpgp.KeyRing) {
Expand Down
2 changes: 1 addition & 1 deletion pgp/passphrase.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ package pgp
import (
"io"

"github.com/jsipprell/keyctl"
"github.com/zmanda/keyctl"
"golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/packet"
)
Expand Down

0 comments on commit 1f2dd05

Please sign in to comment.