Skip to content

Commit fea78cf

Browse files
authored
Merge pull request #4 from lovoo/Fix-imports
Fix imports
2 parents 61eec4b + 1eaba9b commit fea78cf

12 files changed

+23
-12
lines changed

armor/armor.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import (
99

1010
"github.com/ProtonMail/go-crypto/openpgp/armor"
1111
"github.com/ProtonMail/gopenpgp/v3/constants"
12-
"github.com/ProtonMail/gopenpgp/v3/internal"
12+
13+
"github.com/lovoo/gopenpgp/v3/internal"
1314
)
1415

1516
// ArmorKey armors input as a public key.

crypto/decryption_core.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import (
99
"github.com/ProtonMail/go-crypto/openpgp/packet"
1010
openpgp "github.com/ProtonMail/go-crypto/openpgp/v2"
1111
"github.com/ProtonMail/gopenpgp/v3/constants"
12-
"github.com/ProtonMail/gopenpgp/v3/internal"
12+
13+
"github.com/lovoo/gopenpgp/v3/internal"
1314
)
1415

1516
type pgpSplitReader struct {

crypto/decryption_handle.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import (
66
"fmt"
77

88
"github.com/ProtonMail/go-crypto/openpgp/armor"
9-
"github.com/ProtonMail/gopenpgp/v3/internal"
9+
10+
"github.com/lovoo/gopenpgp/v3/internal"
1011
)
1112

1213
// decryptionHandle collects the configuration parameters to decrypt a pgp message.

crypto/encryption_core.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import (
99
"github.com/ProtonMail/go-crypto/openpgp/packet"
1010
openpgp "github.com/ProtonMail/go-crypto/openpgp/v2"
1111
"github.com/ProtonMail/gopenpgp/v3/constants"
12-
"github.com/ProtonMail/gopenpgp/v3/internal"
12+
13+
"github.com/lovoo/gopenpgp/v3/internal"
1314
)
1415

1516
// pgpSplitWriter type implements the PGPSplitWriter

crypto/encryption_handle.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import (
77
"github.com/ProtonMail/go-crypto/openpgp/armor"
88
openpgp "github.com/ProtonMail/go-crypto/openpgp/v2"
99
"github.com/ProtonMail/gopenpgp/v3/constants"
10-
"github.com/ProtonMail/gopenpgp/v3/internal"
10+
11+
"github.com/lovoo/gopenpgp/v3/internal"
1112
)
1213

1314
// encryptionHandle collects the configuration parameters for encrypting a message.

crypto/interop_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/ProtonMail/gopenpgp/v3/internal"
7+
"github.com/lovoo/gopenpgp/v3/internal"
88
)
99

1010
func TestDetachedSignaturesWithUnknownPackets(t *testing.T) {

crypto/message.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import (
1111
"github.com/ProtonMail/go-crypto/openpgp/packet"
1212
"github.com/ProtonMail/gopenpgp/v3/armor"
1313
"github.com/ProtonMail/gopenpgp/v3/constants"
14-
"github.com/ProtonMail/gopenpgp/v3/internal"
14+
15+
"github.com/lovoo/gopenpgp/v3/internal"
1516
)
1617

1718
// ---- MODELS -----

crypto/sign_handle.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import (
1313
"github.com/ProtonMail/go-crypto/openpgp/packet"
1414
openpgp "github.com/ProtonMail/go-crypto/openpgp/v2"
1515
"github.com/ProtonMail/gopenpgp/v3/constants"
16-
"github.com/ProtonMail/gopenpgp/v3/internal"
16+
17+
"github.com/lovoo/gopenpgp/v3/internal"
1718
)
1819

1920
type signatureHandle struct {

crypto/signature_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ import (
1212
"github.com/ProtonMail/go-crypto/openpgp/packet"
1313
"github.com/ProtonMail/gopenpgp/v3/armor"
1414
"github.com/ProtonMail/gopenpgp/v3/constants"
15-
"github.com/ProtonMail/gopenpgp/v3/internal"
1615
"github.com/stretchr/testify/assert"
16+
17+
"github.com/lovoo/gopenpgp/v3/internal"
1718
)
1819

1920
const signedPlainText = "Signed message\n"

crypto/verify_handle.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import (
1111
"github.com/ProtonMail/go-crypto/openpgp/packet"
1212
openpgp "github.com/ProtonMail/go-crypto/openpgp/v2"
1313
"github.com/ProtonMail/gopenpgp/v3/constants"
14-
"github.com/ProtonMail/gopenpgp/v3/internal"
14+
15+
"github.com/lovoo/gopenpgp/v3/internal"
1516
)
1617

1718
type verifyHandle struct {

0 commit comments

Comments
 (0)