On Sat, Jul 27, 2019 at 10:50 AM Aleksandar Lazic
wrote:
> Have you take a look into libsodium based tools?
> https://download.libsodium.org/doc/libsodium_users
>
No I hadn't. Thank you, it looks amazing. (Still need to wrap my head
around it.)
kj
On Fri, Jul 26, 2019 at 6:20 PM Ángel wrote:
> On 2019-07-25 at 16:59 -0400, Kynn Jones via Gnupg-users wrote:
> > In other words, I would love to use a single-purpose tool that is to
> > AES256-encryption/decryption what, for example, gzip is to
> > comp
On Thu, Jul 25, 2019 at 3:26 PM Robert J. Hansen
wrote:
> > First, please allow me to define a bit of ad-hoc
> > nomenclature. I will use the uppercase tems "ENCRYPT",
> > "ENCRYPTION", etc. as shorthands for "compress and
> > AES256-encrypt", "compression and AES256 encryption", etc.
> > Likewi
@Daniel : thanks!!!
On Thu, Jul 25, 2019 at 4:11 PM Daniel Kahn Gillmor
wrote:
> On Thu 2019-07-25 14:00:08 -0400, Kynn Jones via Gnupg-users wrote:
> > The GnuPG documentation refers to an "INTEROPERABILITY WITH
> > OTHER OPENPGP PROGRAMS section", but when I search f
Hi!
The GnuPG documentation refers to an "INTEROPERABILITY WITH
OTHER OPENPGP PROGRAMS section", but when I search for this
title, I find only references to it, not the actual section.
Does any one know where that section is?
Thank you in advance,
kj
Hi everyone,
First, please allow me to define a bit of ad-hoc
nomenclature. I will use the uppercase tems "ENCRYPT",
"ENCRYPTION", etc. as shorthands for "compress and
AES256-encrypt", "compression and AES256 encryption", etc.
Likewise, I will use "DECRYPT", etc. as shorthands for
"[AES256] decry
Hi everyone!
The following short Python script takes three command-line arguments: a
passphrase, an input path, and an output path. Then it uses the passphrase
to decrypt the contents of the input path, and puts the decrypted content
in the output path.
from gpg import Context
import sys
I created a pair of *.pub and *.sec files using the instructions and code
given here:
https://www.gnupg.org/documentation/manuals/gnupg/Unattended-GPG-key-generation.html
(I am using this documentation because the ultimate application I have in
mind is an automated encryption/decryption pipeline.
Hi everyone,
I need to write a program that uses gnupg (possibly through gpgme), but I'm
having a hard time understanding the documentation for this software.
I took something like "cryptography 101" in college, way back when, but the
stuff I read on gnupg/gpgme is filled with concepts that eithe