diff options
author | Koni Marti <koni.marti@gmail.com> | 2021-12-30 10:25:07 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-07 13:45:34 +0100 |
commit | 8813fadfe9ec33361314064a284c612e5e3fa784 (patch) | |
tree | f3547d983cc322356b67865162a1228803a0b4f0 /widgets/pgpinfo.go | |
parent | bc593ac7cdb20621aba685987f2a92c9bd880358 (diff) | |
download | aerc-8813fadfe9ec33361314064a284c612e5e3fa784.tar.gz |
pgp: update openpgp packages (go-crypto and go-pgpmail)
Replaces golang.org/x/crypto with github.com/ProtonMail/go-crypto
consistently and updates go-pgpmail to v0.2.0
Signed-off-by: Koni Marti <koni.marti@gmail.com>
Diffstat (limited to 'widgets/pgpinfo.go')
-rw-r--r-- | widgets/pgpinfo.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/pgpinfo.go b/widgets/pgpinfo.go index febf29ad..6c07ed91 100644 --- a/widgets/pgpinfo.go +++ b/widgets/pgpinfo.go @@ -6,8 +6,8 @@ import ( "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/lib/ui" - "golang.org/x/crypto/openpgp" - pgperrors "golang.org/x/crypto/openpgp/errors" + "github.com/ProtonMail/go-crypto/openpgp" + pgperrors "github.com/ProtonMail/go-crypto/openpgp/errors" ) type PGPInfo struct { |