Basic en- and decryption test against Governikus_Signer has now been done. Beware: I had to add a debug option to gpgsm to workaround non-compliance in algorithm support of Governikus; see the rG68b857df13c8a4e6cae5e3a29fd065bf90764547 for details.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
May 8 2020
May 7 2020
May 6 2020
May 4 2020
Moscow time is 3 hours ahead of UTC, so we are talking about midnight 2022-01-01 00:00:00 aka 2021-12-31 24:00:00 . This is way we say we are 1 minute off. But I now see the problem, AWK's strftime needs another arg to to print in UTC. I am not so used strftime because I always use a my tool epoch2iso to convert Epoch times.
gpg -k --with-colons <anotherkeyid> | awk -F: '$1=="pub" { print strftime("%F %T", $7, 1) }'So we are a minute off. The expiration timestamp is not stored in the key, instead the difference to the creation timestamp is give. This makes it a bit challenging to get it always right. Did you tried
Thanks
Nope, that is correct, the last update of the manual was
@gniibe, will you be so kind and look into this?
It works for me(tm).
gpg -k --with-colons KEYID | awk -F: '$1=="pub" {print $7}'Right, we do have this option only in master (devel version).
May 1 2020
Apr 30 2020
Yes, with current gnupg it works w/o problems. Well, unless systemd decided to remove the directory. There is a loginctl(1) way to avoid this.
You are still using the old way of having the sockets in ${GNUPGHOME:-~/.gnupg}. Since 2.2.13 we use
Apr 29 2020
API-wise this would be possible because right now gpg errors out with
Apr 27 2020
Done for master
Apr 26 2020
Using a double underscore in a symbol should be avoided because such symbols are reserved for system use.
(To include a diff inline, please intend it by two spaces so that it is not not considered as marked up text.)
Apr 24 2020
Apr 23 2020
That is a very old version (2015); please retry using the latest released version 1.4.23 (from 2018).
I just tried and Pinentry ask me whether I really want to use an unprotected key. Take care that you hit the right button.
Apr 21 2020
Apr 20 2020
FWIW, GPGME is basically C90 and we only recently started to use C99 variadic macros - they are a cpp feature, though.
Apr 17 2020
I am working on the Telesec Signature Card v2. I will add encryption support to gpgsm.
Please let us know which version of Gpg4win you are using.
Sorry, I don't know what kind of sample data that is. The reference keys have been provided by the RFC6637 author and are part of GnuPG's test suite; see (gnupg/tests/openpgp/samplekeys/ecc-sample-*).
Apr 16 2020
We do this now always if --auto-issuer-key-retrieve is set. Also backported to 2.2
I back ported @jukivili's changes back to 2.2 which gives a CFB decryption speedup of 25%. I also implemented AEAD _decryption_ in 2.2 to be prepared for mixed 2.2 and 2.3 version use. And AEAD is really fast compared to CFB. Willbe in 2.2.21.
Nope, I was wrong.
Apr 15 2020
Thanks for the patch. However, this the getopt is unfortunately GNU specific which is the reason why the original code open coded the option parser.