Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
143 views

Pros and cons of using an existing .NET assembly versus a command-line tool for same purpose [closed]

I have searched the Internet and I can't seem to find anything related to this topic. I would think there would have been some discussion on it. I just can't find it. Basically, what I'm looking for ...
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 ...
8
votes
6answers
6k views

How to run gpg from a script run by cron?

I have a script that has a part that looks like that: for file in `ls *.tar.gz`; do echo encrypting $file gpg --passphrase-file /home/$USER/.gnupg/backup-passphrase \ --simple-sk-checksum -c ...
7
votes
1answer
83 views

Un-Zipping a file using GPG in android

In my project i am going to un-zip the file which is in the SD-Card. But the files are zipped using a client certificate to ensure that they zip cannot be unzipped on a device that is not authorized ...
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 ...
5
votes
2answers
393 views

where can I find the public key for Gnu Emacs?

I have used emacs for only half a year from 23.1 to 23.3. Every time I tried to find gpg public key for emacs so that I could check tar.gz package with tar.gz.sig released with every new version. It ...
5
votes
1answer
138 views

Is there a canonical, if not core, Gnu Privacy Guard CPAN module?

I'm looking for the right GPG Perl module to use for a small project. I see there are numerous competing modules providing almost identical functionality, but some have a slew of unaddressed bugs, ...
4
votes
1answer
96 views

git verify trusted tags

I would like to include git tag -v command into the deployment process to catch unsigned tags or tags signed by a non-trusted GPG key. The command returns with an exit code of 0 if the tag has a ...
4
votes
1answer
126 views

Using output from gpg --list-packets on a key to get the mpi values to generate s-expressions

I am trying to use gpg generated public keys to do encryption using libgcrypt. I used the list packets command on the key to get me the contents of the key and parsed the mpi values into an ...
4
votes
2answers
734 views

Checking GPG signatures in Javascript

There is already a solution for extracting public keys and encrypting messages in JavaScript, but I cannot figure out how to decrypt messages or check signatures. Any ideas? From what I can see, ...
4
votes
1answer
129 views

Encrypted email test data set

I'm looking for a set of emails encrypted (and signed) by a variety of email clients in order to test a mail client. A downloadable mbox file along with test gpg keys would be ideal for this. There ...
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
38k 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 ...
4
votes
3answers
1k views

Inter-convertability of asymmetric key containers (eg: X.509, PGP, OpenSSH)

Are asymmetrical cryptographic keys fundamentally inter-convertible between the major key container formats? For example, can I convert an X.509 key file into a PGP or OpenGPG key file? ...
4
votes
2answers
908 views

PGP signatures from Python?

What is the easiest way to create and verify PGP/GPG signatures from within a Python application? I can call pgp or gpg using subprocess and parse the output, but I was looking for a way that didn't ...
3
votes
1answer
90 views

encryption of php contact form with my public key

I am interested if anyone knows some php script/code for contact form which I could place in my (html) website and visitor can send me message (maybe even attachment) which will be encrypted with my ...
3
votes
2answers
134 views

How to use GPG exported keys in libgcrypt?

Was wondering how could I use private/public keys exported by GPG to be used by libgcrypt? Libgcrypt needs to s-expression structures with its associated mpi values and I don't know how to extract ...
3
votes
1answer
364 views

How to configure Jenkins (Hudson) with gpg signature

I'm in the process of transitioning to Maven (from Ant) and want to automatically sign my artifacts with a GPG in the Jenkins job. From the documents that I've read, I need to manually run Maven to ...
3
votes
1answer
159 views

Where to keep a GPG secret key for a Maven project in CI environment?

I'm trying to use maven-gpg-plugin:sign in order to sign project artifacts before deployment to Sonatype OSS repository. The question is where shall I keep my secret key secring.gpg: In continuous ...
3
votes
4answers
1k views

GnuPG Shell Script - Refuses to read password

The script below used to work on Mac OS X, but, since moving it to Ubuntu, it doesn't seem to read from the password file at all. Even when I run it from the command line, no matter what I do, I get ...
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
0answers
111 views

Java process cannot capture InputStream, OutputStream from gpg.exe

I am trying to decrypt using gpg.exe --passphrase-file my.passphrase --decrypt --output MTR241_20111124.htm MTR241_20111124.htm.gpg (without --batch and --yes option). I am also providing the ...
2
votes
1answer
67 views

Sending an XML file contains gpg signature with PHP+cURL

I have an xml file and a GPG signature is in it, in <SIGNATURE> tag. Here is the xml: $xml = "<DATA> .... <SIGNATURE>-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 ...
2
votes
2answers
479 views

We encrypt a file for a client using BouncyCastle API. He gets a “For your eyes only” message from PGP when trying to decrypt it. Why?

We use the Bouncy.Castle C# API to do PGP encryption. I am by no means an expert on PGP encryption and the various options available. The encryption seems to run fine, however, when the client ...
2
votes
0answers
76 views

Does libgcrypt provide pkcs1 unpadding functionality?

In the libgcrypt doco, it specifies that you can define an s-expression that allows for the data to be padded in PKCS#1 before being encrypted. Is there a another function or another expression I ...
2
votes
3answers
1k views

Bruteforce GPG passphrase using script

I have forgotten my passphrase for my gpg key on linux. Can someone please help me write a simple script to use bruteforce to crack the key? I remember some of the words which MIGHT be in the ...
2
votes
2answers
198 views

Signing and verifying text with key pairs using Javascript

Is there any library available (or well-written algorithm reference I could implement) that would allow me to sign a piece of text with a private key, preferably my existing SSH (RSA) or PGP key? My ...
2
votes
1answer
55 views

Security problems of signing lots of small data chunks

I want to sign huge numbers of small data chunks (hashes, e.g. SHA) using asymmetric key algorithms (preferably RSA with GPG) and make the signed files publicly available. Does this in any way bring ...
2
votes
1answer
606 views

Using gpg to sign an RPM as part of a continous build - how do I avoid the prompt for the passphrase?

I have a continuous integration build system that generates an RPM via a shell script triggered by cron. I want to sign the RPM with gpg, but gpg insists on the user manually entering the passphrase ...
2
votes
2answers
100 views

Open Source Project - Is it important to sign jars?

I have open sourced several of my projects and have published artifacts on sonatype.org. Is it important to sign your artifacts, does JBoss and other open source publishers sign their code?
2
votes
0answers
460 views

Python + GPG (edit-key change password)

Hi to all I'm looking for a gpg Python library that let me change password for my key. I saw python-gnupg but there aren't that function :( Anyone can help me please? If is possibile i wish have also ...
2
votes
2answers
489 views

Using passphrase callback in ruby gpgme

I am using ruby gpgme gem (1.0.8). My passphrase callback isn't called: def passfunc(*args) fd = args.last io = IO.for_fd(fd, 'w') io.puts "mypassphrase" io.flush end opts = { ...
2
votes
3answers
2k views

Recommendations for Java + OpenPGP?

I want to develop a small OpenPGP client and I'm searching for a Java library for OpenPGP. Are there any (open source) recommendations for this approach? Cryptix.org does not seem alive anymore... ...
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
1answer
46 views

how to bypass pinentry (passphrase screen) while decrypting a file using gpgme

I am trying to decrypt a file from the server where I have the required public key of that server. The keyring has a password protection and so when I try to decrypt a file, it asks me for a ...
1
vote
2answers
36 views

Can I delete a tag signed by somebody else?

Is it possible to delete a gpg signed tag on a remote repository without having the key? I expect the answer is no, but is this true? Another way to phrase the question: Is it possible to put ...
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
2answers
153 views

gpg encryption failed: file open error

I have been going nuts with this.. I have gnupg installed on my CentOS server and I try to encrypt uploaded files (uploaded via a PHP page). On the server via the command line, it works perfectly. ...
1
vote
1answer
247 views

Bash script not working when run outside terminal

This script does not function properly when launched graphically (by double clicking script icon and selecting run), however, runs just fine if called from the terminal; will not save a file or load ...
1
vote
2answers
282 views

GPG Error Code 2

GPG is always returning 2 at the result. My code is as follows $cmd = "/usr/bin/gpg -a --recipient $to -e -o $outfile $infile"; Where outfile is the file where the encrypted data will be written and ...
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
1answer
344 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
472 views

RSA python publickey using pyCrypto

How to load a RSA public key file into a pyCrypto publickey object in python?
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
266 views

bash script checking if GPG signature is valid and belongs to a key

I am trying to write a bash script that checks if a given signature is valid or not. I have two possible outputs from: $ gpg --no-default-keyring --keyring /etc/pubring.gpg --verify file.tgz.sig ...
1
vote
0answers
86 views

Cascade GPG signing

I'm trying to solve problem with secure mailing lists the idea is: Person A signs (or cipher) mail and sends to groupmail. On server this mail is verified against correct key, signed (ciphered) ...
1
vote
2answers
259 views

Getting “GPG Error” when running Java application as Windows 7 service

When I run my Java application as a Windows service utilizing a wrapper, everything works fine except when the application tries to decrypt a file. It produces the following error: GPG error >> ...
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.

1 2 3