惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
P
Privacy International News Feed
Vercel News
Vercel News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
博客园 - 叶小钗
F
Fortinet All Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
L
LINUX DO - 最新话题
AWS News Blog
AWS News Blog
Engineering at Meta
Engineering at Meta
Attack and Defense Labs
Attack and Defense Labs
Recent Announcements
Recent Announcements
Recent Commits to openclaw:main
Recent Commits to openclaw:main
PCI Perspectives
PCI Perspectives
Cloudbric
Cloudbric
AI
AI
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
IT之家
IT之家
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
J
Java Code Geeks
M
MIT News - Artificial intelligence
Cisco Talos Blog
Cisco Talos Blog
V2EX - 技术
V2EX - 技术
Webroot Blog
Webroot Blog
Microsoft Security Blog
Microsoft Security Blog
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
G
Google Developers Blog
W
WeLiveSecurity
罗磊的独立博客
P
Privacy & Cybersecurity Law Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
T
Tailwind CSS Blog
V
Visual Studio Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
Secure Thoughts
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
F
Full Disclosure
Blog — PlanetScale
Blog — PlanetScale
The Last Watchdog
The Last Watchdog
P
Proofpoint News Feed

John Bokma's Hacking and Hiking

Failed to verify signature archive-contents.sig in Emacs PAR trouble How To Create a Bootable LibreELEC Installation using Mac OS Running pdflatex Using the Alpine Pandoc LaTeX Docker Image A Docker Image for Sass Timezones in Alpine Docker Containers A Tale of Three Docker Images Debugging a Perl Docker container Perl Time::Piece Unicode Issue Giving Docker Desktop for macOS a Second Chance Flashing another TP-Link TL-WDR4300 with OpenWrt firmware Rehousing two tarantulas Getting started with the Perl version of tumblelog on Ubuntu 18.04 LTS A visit to Avonturia De Vogelkelder Flashing a TP-Link TL-WDR4300 with OpenWrt firmware Mounting a VDI File in a Different VirtualBox Guest Wireless Headless Raspberry Pi - John Bokma A Matter of Time - John Bokma Hand coding an RSS 2.0 feed in Python RFC #822 and RFC #3339 dates in Perl RFC #822 and RFC #3339 dates in Python Hand coding an RSS 2.0 feed in Perl Nav Element with no Heading Rewriting CommonMark Nodes in Perl "right" this time
Aquamacs 3.6 Hangs When Saving An Encrypted File
John Bokma · 2023-05-26 · via John Bokma's Hacking and Hiking

May 25, 2023

In the evening I wanted to save an encrypted text file I had open in Aquamacs version 3.6 on my Mac mini. This somehow hung up Aquamacs until I pressed C-g. After some Googling I found a solution: downgrade GNU Privacy Guard from version 2.4.1 back to version 2.4.0.

First I verified that I indeed was running 2.4.1 which seems to cause this issue in Emacs and hence Aquamacs:

rhea:~ john$ gpg2 --version
gpg (GnuPG) 2.4.1
libgcrypt 1.10.2
Copyright (C) 2023 g10 Code GmbH
License GNU GPL-3.0-or-later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Home: /Users/john/.gnupg
Supported algorithms:
Pubkey: RSA, ELG, DSA, ECDH, ECDSA, EDDSA
Cipher: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH,
        CAMELLIA128, CAMELLIA192, CAMELLIA256
Hash: SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224
Compression: Uncompressed, ZIP, ZLIB, BZIP2

I am using Mac Ports so I read how to install an older version of a port which turned out to be easy.

First, I checked if the older port was still installed using: port installed gnupg2. This reported:

The following ports are currently installed:
  gnupg2 @2.2.15_0+openldap+pinentry_mac
  gnupg2 @2.2.16_0+openldap+pinentry_mac
  gnupg2 @2.2.17_0+openldap+pinentry_mac
  gnupg2 @2.2.23_0+openldap+pinentry_mac
  gnupg2 @2.2.25_0+openldap+pinentry_mac
  gnupg2 @2.2.34_0+openldap+pinentry_mac
  gnupg2 @2.2.36_0+openldap+pinentry_mac
  gnupg2 @2.4.0_0+openldap+pinentry_mac
  gnupg2 @2.4.1_0+openldap+pinentry_mac (active)

Next, I activated the previous version of GNU Privacy Guard using:

rhea:~ john$ sudo port activate gnupg2 @2.4.0_0+openldap+pinentry_mac
--->  Computing dependencies for gnupg2
--->  Deactivating gnupg2 @2.4.1_0+openldap+pinentry_mac
--->  Cleaning gnupg2
--->  Activating gnupg2 @2.4.0_0+openldap+pinentry_mac
--->  Cleaning gnupg2

Finally, I verified that I now could save the file encrypted. And indeed saving the file worked without any problems.