Tagged Questions

GNU Privacy Guard is the GNU project's complete and free implementation of the OpenPGP standard as defined by RFC4880

learn more… | top users | synonyms

10
votes
6answers
7k views

How to do PGP in Python (generate keys, encrypt/decrypt)

I'm making a program in Python to be distributed to windows users via an installer. The program needs to be able to download a file every day encrypted with the user's public key and then decrypt it. ...
9
votes
1answer
4k views

Is there a good GnuPG encryption library for Java/Scala?

I would like to be able to encrypt files on disk and/or data in memory using GnuPG from a Java application. If possible I'd like to avoid having to make system calls out to the GPG command line ...
6
votes
7answers
1k views

GnuPG - How to edit the file without decrypt and save to local disk first?

I'm using GNUPG to encrypt my ascii files. I learnt to generate a key, also how to use the it to encrypt and decrypt a file. There are two ways I used: gpg -d foo.txt.gpg & gpg ...
4
votes
1answer
221 views

GnuPG 4096 bit limit

Why is RSA keys in GnuPG limited to 4096 bits? Would it be illegal for me to modify the source to increase the max size? ssh-keygen does not have this limitation (e.g., I can create a key that's ...
4
votes
2answers
3k views

Best way to soft brute-force your own GPG/PGP passphrase?

I created a nice long passphrase, used it a few times, then forgot it ;) The twist is, I know the general theme and probably almost all of the characters. The perfectionist in me doesn't want to ...
4
votes
5answers
39k views

Batch file script to remove special characters from filenames (Windows)

I have a large set of files, some of which contain special characters in the filename (e.g. ä,ö,%, and others). I'd like a script file to iterate over these files and rename them removing the special ...
4
votes
8answers
20k views

GnuPG: “decryption failed: secret key not available” error from gpg on Windows

Environment: HP laptop with Windows XP SP2 I had created some encrypted files using GnuPG (gpg) for Windows. Yesterday, my hard disk failed so I had reimage the hard disk. I have now reinstalled ...
3
votes
3answers
250 views

Trusted development path in git with signatures

I'd like to build a trusted path for software development. This means that every change in to code must be signed by the author and one reviewer, before being accepted. These signatures for the ...
3
votes
3answers
2k views

Recommended key size and type for GnuPG?

A Practical Introduction to GNU Privacy Guard in Windows recommends DSA and ElGamal, but I would like to know if RSA is good enough to use these days, and if so, what minimum key size should I use? Is ...
2
votes
1answer
54 views

Generate GnuPG Pair In PHP

Is there any way besides exec() to generate a keypair with GnuPG in PHP? From what I can tell, the PECL library doesn't have any functions to do this.
2
votes
3answers
90 views

What's good way of revision control PGP encrypted text files?

What's a good approach to revision control PGP encrypted text files? The goal is to only store PGP encrypted (preferably with ASCII armor) text files any where, in local repository (working copy) ...
2
votes
2answers
180 views

visualize the GnuPG web of trust

Is there some way to visualise the GnuPG web of trust? With my (or any other) key in the middle, with the signed keys in the first circle, the trustpersons' trustpersons in the next and so on? If ...
2
votes
5answers
1k views

Calling GnuPG in Java via a Runtime Process to encrypt and decrypt files - Decrypt always hangs

NOTE: Coming back to this later as I've been unable to find a working solution. Draining the input streams manually instead of using BufferedReaders doesn't seem to help as the inputStream.read() ...
2
votes
1answer
284 views

PGP/GnuPG to encrypt

Need to use PGP/GnuPG to encrypt.can suggest what the Python packages to use that. for PGP encryption i.e. on the other side is PGP used to decrypt.
2
votes
2answers
228 views

Is there any module that allows Django/Python to work with gnupg?

I was wondering if there's any django module, or in such case any python module, that will allow me to create my own application to manage the creation, administration, etc of GnuPG keys, as well as ...
2
votes
1answer
3k views

GnuPG Wrapper with C#

I use GnuPG and C# to encrypt files with imported public keys. But when I try to make encryption, GnuPG encrypt file with public key of main user. I'm sure that I pass right recipient. Any help is ...
1
vote
0answers
27 views

Bot with gpg encrypting

I am creating some bot on python and I want to send encrypted message him from different instant messaging clients, e.g Miranda IM, QIP etc. For this issue I use python-gnupg library for generating ...
1
vote
0answers
49 views

Unix SVN Client Password Encryption

My company is looking at SVN for our new version control tool but are worried that it stores passwords in plain text for our Unix users. I saw that SVN now offers an alternative for GNOME and KDE ...
1
vote
1answer
45 views

Convert ASCII armored output to binary data

How can I convert the following PGP message to binary data using Python 2.6? -----BEGIN PGP MESSAGE----- Version: GnuPG v1.0.7 (MingW32) ...
1
vote
1answer
75 views

Using GPG to encrypt .gzip file in CHMOD 777 directory within PHP - Error code 2

To begin, I've tried the two solutions found here: GPG Error Code 2 The best I could. I don't quite understand what to set --homedir directory to, so maybe I can still try that method if somebody can ...
1
vote
1answer
64 views

How to let Makefile uses gpg passwordlessly?

I have a Makefile that calls gpg to decrypt text files before opening it with a text editor for editting. Because I do it frequently, I'd like save time typing in password every time, how can I set up ...
1
vote
2answers
119 views

Use JS to replace text in Gmail message body

I want to write an GnuPG extension for Google Chrome. So far, everything works as expected: If I detect ASCII armored crypt-text, I parse it with my extension and then replace it. (after password has ...
1
vote
1answer
351 views

gpg crypt and decrypt

I am trying to crypt and decrypt Strings. Now I have done this: mis@fasan:~$ echo "hallo" | gpg --symmetric --pgp8 --cipher-algo AES256 > /tmp/1 Enter passphrase: Repeat passphrase: mis@fasan:~$ ...
1
vote
1answer
462 views

How to verify gnupg signature with Python gnupg module?

I have problem with verification signature with Python gnupg module. With this module I can encrypt and sign file: gpg.encrypt_file(stream, encrypt_for, sign=sign_by, passphrase=key_passwd, ...
1
vote
2answers
187 views

in-place encryption with gpg

Is it possible to force gpg to do in-place encryption? In other words, to overwrite the source (unencrypted) file with encrypted data? This is how ccrypt(1) operates by default.
0
votes
0answers
14 views

gpg decrypted file won't load properly in richtextbox in widows form

I have decrypted a .gpg file using GnuPG.exe with following options, --passphrase-fd 0 --output "C:\Folder\destination.txt" --decrypt "C:\Source\Source.gpg" I can open the decrypted file in ...
0
votes
0answers
34 views

Using GPG with C?

I am writing a communication program in C and I am looking for the best way to use GnuPG encryption. I am already using symmetric encryption algorithms via the mcrypt library but wish to incorporate ...
0
votes
0answers
76 views

Postfix pipe to php script not working as expected

So I have setup Postfix to redirect (pipe) all incoming mail to a php script. The redirection works well. One of the thing the php script does is to encrypt some data and store in a db. To encrypt the ...
0
votes
1answer
20 views

Scalability issues of multiple key encryption with GnuGP

I want to follow up on the questions posted here: Encryption with multiple different keys? I've implemented the GnuGP solution for a web app I built but I fell into scalability issues pretty quickly ...
0
votes
1answer
27 views

gnupg gives me the error “Invalid public key algorithm” when I try to use an old key

When I try to decrypt an old file, gpg2 gives me this error: gpg: public key decryption failed: Invalid public key algorithm gpg: decryption failed: No secret key gpg1 gives me this error: gpg: ...
0
votes
1answer
50 views

GnuPG with MySQL

I'm trying to save data very securely for a client, and will be using GnuPG. The web server is running Apache/PHP and will encrypt the data with a private key, build the SQL statement after ...
0
votes
0answers
30 views

pecl gnupg library is not working

I have isntall PECL gnupg extension but it doesnt work for me. when i tried to get the keyinfo it return me any empty result. What would be the problem, any body can help me. $gpg = new gnupg(); ...
0
votes
0answers
16 views

How to get public key from private in gpg without using local storage (under ~/.gpg)?

Look to Subj: How to get public key from private in gpg without using local storage (under ~/.gpg)? This solution does not satisfy requirements: $ gpg --import priv.key $ gpg --export $KEYID ...
0
votes
1answer
209 views

How do I Encrypt/Decrypt using GnuPG/GPG4Win from a website?

I am attempting to encrypt/decrypt user names to pass between two different websites using gpg4win 2.1.0. I can get my code to work on my development machine, but not in production. I'm developing ...
0
votes
0answers
137 views

How to export a GnuPG compatible public key using BouncyCastle.Net?

I am trying to export a public key generated using BouncyCastle.Net, then import it using GnuPG. I can export the key following the example provided by BouncyCastle.Net, but when I try to import the ...
0
votes
2answers
38 views

GNUPG Escaping echoed data in shell_exec

I really want to go about this securely, as there is customer data involved. I am using GNUPG via the command line because I am on shared hosting, and the PHP class is not available. So my code is as ...
0
votes
1answer
75 views

PGP & Single Sign on

I am completely new to pgp, as far as i can see pgp is being used to encrypt files and emails. 1) Can it be used for single sign on 2) Their is pgp and gnupg (which is based on openpgp) , can ...
0
votes
1answer
262 views

Installing PECL Extension GnuPG with XAMPP & OS X

I've so far been unable to install this extension on my OS X machine. I've had no issues on CentOS or RedHat. I've built gpgme-1.3.0 from source. sudo /Applications/XAMPP/xamppfiles/bin/pecl install ...
0
votes
1answer
40 views

How do I list information for a GnuPG encrypted message?

I'm still working with GPG, as in this post: How do I encrypt plaintext with GnuPG? What I need now is to be able to list various info (e.g. all recipients) of an encrypted message without ...
0
votes
1answer
318 views

How do I encrypt plaintext with GnuPG?

I've been working a great deal with GnuPG lately and have come to depend on its ability to encrypt files, etc. However, I am currently working on a couple of projects that involve communication (i.e. ...
0
votes
1answer
73 views

Crypting mail addresses - funny design problem

In my web project, I am storing mail addresses. These addresses may be used by the system to throw mails to the recipients. It is also important to say that these mail addresses have expiration time. ...
0
votes
2answers
273 views

Using the gpgme library from .NET?

This question is actually two questions: How to use the gpgme library in Windows? Are there bindings for .NET available somewhere? (If not, I guess I can make my own.) EDIT: Solution found: ...
0
votes
1answer
147 views

Check encrypted file for empty content

I'm using gpg to decrypt files sent to me by a vendor. Everything works fine accept for when the content of the encrypted file is empty (the vendor has told me that there is no content in the files in ...
0
votes
1answer
431 views

mdc error when decrypting GPG message

I have a client and server system that regularly run scheduled tasks and communicate through xml files that have been encrypted by gpg. All required public keys have been successfully exchanged ...
0
votes
1answer
75 views

Find out location of OpenSSL and GnuPG using PHP?

Is there a cross-platform compliant way of finding out the path to the main executables of OpenSSL and GnuPG? Obviously this would be null if the software was not installed or detected.
0
votes
2answers
302 views

gnupg decryption using public key provided by the vendor

i have installed gnupg on my office desktop(windows server 2008 sp2) and generated the keys and i was able to encrypt and decrypt using the keys(generated by importing third party xxx.asc file)...but ...
0
votes
1answer
552 views

Decrypting a gpg file with gnupg

I'm trying to decrypt some data from gpg files that I've downloaded. Downloading the files to a directory is no problem, but I'm having trouble actually decrypting them. Here's what I'm doing right ...
0
votes
1answer
109 views

Sendmail and gnupg

I am looking for a way to configure wordpress on my RHEL4 machine to send out email notifications using gnupg (sendmail). Can anyone point me in the right direction?
0
votes
1answer
175 views

GnuPG on Wampserver

Can you please tell me how do I install and use GnuPG on wampserver ? I seriously want that. I hope this question comes under stackoverflow. If not please close this but please dont downvote me :(
0
votes
1answer
113 views

PHP/GnuPG Decryption — Syntax error?

I'm using php to invoke gpg, but I'm getting a pipe error. I thought that if I read in the password from a file, I could then pipe it to the command itself? But, I keep getting: Syntax error: "|" ...

1 2