Re: Getting more verbose details of a key

2017-11-22 Thread Werner Koch
On Tue, 21 Nov 2017 14:01, pe...@digitalbrains.com said: > How about just --show? It was suggested in an unfriendly manner at Similar to Wouter's suggestions --show is not specific enough and does not explain that this is to show the keys and not messages. > a file without processing it make sen

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread Werner Koch
On Wed, 22 Nov 2017 03:44, mac3...@gmail.com said: > sudo apt-get install -y adns-tools You should not need this. > sudo apt-get install -y pcscd scdaemon I guess you install scdaemon to get some infrastructure provided by Ubuntu in their scdameon package. > Specifically G13 and WKS tools ar

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread Werner Koch
On Wed, 22 Nov 2017 03:44, mac3...@gmail.com said: > sudo apt-get install -y libgmp-dev > sudo apt-get install -y nettle-dev > sudo apt-get install -y libgnutls28-dev These are also not needed because the speedo Makefile will download and use ntbtls instead. Shalom-Salam, Werner -- Die Ge

Encrypt to a key without importing it to keyring

2017-11-22 Thread Seby
Hello, Is there any possibility i could encrypt some text to a public key but without importing it to my keyring? Passing it to gnupg via command line or something (i do know and accept that if i want to encrypt multiple messages or files to the same key i will have to provide it every time) . Se

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread murphy
Thanks to all for the suggested improvements!! One think I forgot to mention was to add the configuration: nano ~/.gnupg/gpg-agent.conf pinentry-program /usr/bin/pinentry-gtk-2 This is required since pinentry is not compiled from source but installed as an Ubuntu package. signature.asc Desc

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread Dmitry Gudkov
Dear Werner, Could you give me (a gnupg newbie) clear instructions to compile the latest version for Ubuntu 16.04.3? I’m running it as a VM in VirtualBox on my Mac. Also I need you advice on my keys. Now I have rsa2048 but want to switch to rsa4096. What’s the best way of doing? Migrate or dele

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread murphy
On 11/22/2017 06:00 AM, Dmitry Gudkov wrote: > ...clear instructions to compile the latest version for Ubuntu 16.04.3? Hi Dmitry - I haven't finished testing Werner's suggestions but this will work on Ubuntu 16.04: 1.  create an empty file: gpg223.sh and cut, paste and save the following: cd ~/D

Re: Encrypt to a key without importing it to keyring

2017-11-22 Thread Seby
I need to pass it via batch or something... Like this: $pgp_public_key = 'pgp public key text armored' gpg -e -r $pgp_public_key --always_trust Basically use gnupg without a keyring or trustdb. And the pass the armored pgp public key with each command and operation. Thank you in advance. On Nov

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread murphy
Note that the last lines of the bash file in my previous post didn't print right (arrrgh, my attempt to clarify backfired).  It is probably best to leave it as Werner hinted anyway: sudo make -f build-aux/speedo.mk native INSTALL_PREFIX=/usr/local sudo ldconfig murphy signature.asc Descript

Re: Which gnupg2-smime should I use for this build?

2017-11-22 Thread Dustin Rogers
Hi All: Outside of the RPM package that I was using, for some reason I was trying yum install gpgsm. I used yum install gnupg2-smime and it found the correct pkg. I just needed to use the correct command. Thank you, -Dustin From: Dustin Rogers Sent: Tue

Re: Complete Ubuntu compile of GnuPG

2017-11-22 Thread Phil Pennock
On 2017-11-22 at 08:09 -0500, murphy wrote: > pinentry-program /usr/bin/pinentry-gtk-2 > > This is required since pinentry is not compiled from source but > installed as an Ubuntu package. GnuPG's configure takes --with-pinentry-pgm=... to override the default. (I build the https://public-packag

Complete Ubuntu compile of GnuPG

2017-11-22 Thread murphy
Thanks Robert and Werner.  Goal accomplished :) OpenPGP:   yes S/MIME:    yes Agent: yes Smartcard: yes (without internal CCID driver) G13:   yes Dirmngr:   yes Gpgtar:    yes WKS tools: yes The deletion of adns-tools, libgmp-dev, nettle-dev and libgnutls28-dev from my bash file resulted