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 /lib/keystore.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 'lib/keystore.go')
-rw-r--r-- | lib/keystore.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/keystore.go b/lib/keystore.go index dcdbd74..df048f4 100644 --- a/lib/keystore.go +++ b/lib/keystore.go @@ -5,9 +5,9 @@ import ( "os" "path" + "github.com/ProtonMail/go-crypto/openpgp" + "github.com/ProtonMail/go-crypto/openpgp/packet" "github.com/kyoh86/xdg" - "golang.org/x/crypto/openpgp" - "golang.org/x/crypto/openpgp/packet" ) var ( |