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

learn more… | top users | synonyms

0
votes
1answer
27 views

How to sign maven publications with gradle

Have such build.gradle script that uses new publishing plugin: apply plugin: 'java' apply plugin: 'groovy' apply plugin: 'signing' apply plugin: 'maven-publish' // ... publishing { publications ...
0
votes
0answers
20 views

Shell syntax error on pgpewrap command launched by mutt

I'm getting the following error when I attempt to encrypt a message in mutt. sh: -c: line 0: syntax error near unexpected token `(' sh: -c: line 0: `pgpewrap gpg --batch --quiet --no-verbose ...
0
votes
2answers
52 views

GPG encryption in an ASP.NET C# Web application - No Public Key

I have set-up Gpg4win on Windows Server 2008 R2 and the website is running .Net 4.5. I'm using the Starksoft OpenPGP dll. I've added the required public key to Gpg4win via remote desktop, however ...
0
votes
0answers
16 views

how do I use the ruby-gpgme gem

I have no idea how to configure gpg, gpgme or get it working in rails. I need to encrypt a text file to be sent to a fulfillment company. How do I gpg encrypt the file in rails?
0
votes
0answers
15 views

Verifying files with GPG, without a .sig or .asc file, and with only a key id and fingerprint? [migrated]

From my limited knowledge of PGP/GPG, one must have 2 things to verify a file: The file's "signature" (essentially a hash of the file encrypted with the trusted entity's private key; normally ...
0
votes
1answer
61 views

Decrypt gpg in Java without using Java.Runtime

I have a .gpg file and a RSA private key. How can I programatically decrypt it without using operating system? e.g. without using something like Runtime.getRuntime().exec("gpg -decrypt....."); ...
0
votes
1answer
45 views

decryption requires private key and passphrase

Is it possible to require BOTH a private key and a passphrase in order to decrypt a file using gpg? I understand I can encrypt the file twice once using the public key. Then encrypt that file with the ...
-1
votes
1answer
43 views

How to Run GPG encryption command from C++ in Linux [closed]

Attempting to encrypt a file in Linux via C++. Currently using system("gpg -c ./testfile.txt"); The problem is that when you run gpg -c ./testfile.txt the shell asks for a passphrase and I don't ...
0
votes
0answers
93 views

Emacs in windows, gpg error

I am using emacs on windows. Whenever I look to encrypt file contents using epa-encrypt-file in gives the following error: Searching for program: Permission denied, gpg How do I correct this? ...
0
votes
0answers
81 views

PHP5.4 GnuPG Installation issue [closed]

I have tried to install GnuPG extension on Ubuntu machine with PHP Version 5.3.6 Using the following pecl command it worked fine. sudo pecl install gnugp But My live server has php 5.4 when i try ...
1
vote
1answer
50 views

Authentication using GPG

I've been reading about authentication, both in-band and out-band. I know one can sign his/her own GPG key and then others can verify the signer using their fingerprint. I also read GPG key signing ...
3
votes
0answers
78 views

Decoding PGP keys in Erlang

I'm unable to "pem_entry_decode" GPG public key in Erlang. Public key generated through OpenSSL works fine. I've fixed GPG key as suggested in this post. #!/usr/local/bin/escript main(_) -> ...
2
votes
2answers
122 views

Decrypting a GPG string from command line

I'm trying to write a console application that will decrypt a gpg signature on request. Everything's going fine, EXCEPT for the part where it prompts for my GPG password. How do I call GPG --decrypt ...
1
vote
1answer
29 views

how to store a password in webapp that needs to be passed in plain text to a third party?

I have a simple webapp which users login to access to a third party API that also require their personal credential in plain text username and password (no OAuth or anything). What's a proper, ...
3
votes
3answers
68 views

How to auto close an auto encryption mode buffer in emacs?

I keep some stuff in a file 'XXX.gpg' which I read and edit with emacs auto encryption mode. In some cases I forget to close the buffer for a long time which is some kind of risk. I would like to ...
0
votes
1answer
55 views

MD5 vs GPG signature [closed]

According sites like apache signing a file (generating a checksum) using GPG is more secure than plain old MD5. I don't understand why most people use MD5 instead. Can some explain the real ...
3
votes
2answers
556 views

Getting GPG Decryption To Work In Java (Bouncy Castle)

let me start by saying I'm extremely new to all of this. What I am trying to do is to use gpg from within Java in order to decrypt an encrypted file. What I've done successfully: Had a colleague ...
1
vote
2answers
95 views

Using gpg to digitally sign an encrypted key [closed]

I'm working on a lab for my computer security class, and one step is giving me problems. Here is the assignment. And here is all the work I've done up until step 11. It is step 11 that I am having ...
1
vote
1answer
73 views

Maven GPG plugin not signing sources and javadoc jars

I'm attempting to release my project's artifacts to Sonatype using Maven. I'm using the Maven GPG plugin to sign the artifacts, but it's not signing the sources and javadoc jars (just the main jar), ...
0
votes
1answer
63 views

Bsign: read password from stdin

Good evening. Is it possible for bsign to accept a password from stdin, not from a terminal? Or, may be are there ways to alter password-entering program? I wish my script to auto-sign all my ...
0
votes
1answer
102 views

GNUPG decryption failed in php

I am using GnuPG library to encrypt decrypt messages. I have successfully confirgured the GPG extension on my server and generated a key pair. Also I am successfull in importing another public key and ...
3
votes
2answers
117 views

Suppressing GPG signing for Maven-based continous integration builds (Travis CI)

I'm using Travis-CI to provide continuous integration builds for a few Java open source projects I'm working on. Normally this works smoothly, but I have a problem when the POM specifies GPG signing, ...
-1
votes
1answer
87 views

gpg physically protecting private key file [closed]

I'm just getting started with GPG. I've created a key pair and now have several .gpg files: drwx------ 2 jason jason 4096 Feb 11 21:10 ./ drwx------ 90 jason jason 45056 Feb 11 20:49 ../ -rw------- ...
0
votes
1answer
30 views

How long should a gpg key used for signing rpms be valid?

red hat and fedora both use a new key per release and appear to support that key forever. I remember reading that the key should expire but it depended on what it was used for.
2
votes
2answers
251 views

Automatically decrypt and run an encrypted bash script without saving decrypted file to file system

I have a shell script that produces sensitive content when run. It sits on a box that only a few users have permissions to access. However, I have also added layered obfuscation to prevent ...
3
votes
1answer
80 views

How to encrypt in a pgcrypto compatible way in python

For a project I am working on I would like to use a pgcrypto compatible encryption in python. And specific the public key encryption part. The problem I have is that most (all) of the implementations ...
0
votes
2answers
307 views

GPG error on apt-get update (the public key is not available). How to fix? [closed]

I get this error on apt-get update: W: GPG error: http://www.tux-embedded.com evelin-imx25 Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY ...
0
votes
0answers
47 views

gpg trustdb.gpg loading

I have a problem in using gpg on linux boot up (Debian). I have a process that is being loaded on bootup using rc.local. This process will call gpg verify API's using gpgme. I found out that by ...
0
votes
0answers
19 views

Can I effectively choose gnupg recipients by email address?

We have a perl program that generates gpg encrypted files for multiple folks. Today, we added dan@example.com. When I run the encryption script, it happily encrypts the file for dan@example.com using ...
2
votes
1answer
172 views

Decrypting with GPG doesn't create an output file

I have a PGP file which I usually decrypt using the PGP Corp. app on windows. In trying to get the process working on linux, I've hit a snag. Here's the command I'm using. gpg --output ...
1
vote
3answers
442 views

how to encrypt a file using private key in gpg

I'm producing an update for some systems and I want to encrypt the updates for keeping confidentiality , integrity and validity of my signature. I want to encrypt the file with my private key and ...
0
votes
3answers
111 views

Password storage (for a set of scripts)

I have a system (actually it is a set of shell scripts) which has a lot of instances on different servers in different test stages (dev, uat, prd). Scripts need use some passwords for authorization in ...
-1
votes
1answer
137 views

Generate random bytes for gpg --gen-key [closed]

I'm using putty to connect to a unix host where I want to generate a new gpg key. After the Key generation started I get this message Not enough random bytes available. Please do some other work to ...
0
votes
2answers
225 views

gpg encrypt only certain files in a folder

There are 15 files in a folder, all with gz extension. I want to encrypt only 12 out of them and skip the 3 files. Is there any way to do this? all files names are different and may or maynot start ...
2
votes
1answer
75 views

Is there a way to test if a file is GPG encrypted in a git hook?

I have a git repository that tracks a couple config files. One of the config files is plain text, while the other is gpg encrypted. They are named as such. myconfig.yaml myconfig.yaml.gpg I ...
0
votes
1answer
213 views

Decrypting PGP with multiple files merges them gpg

I'm using an SSIS (2008) process task to decrypt a PGP file. It uses the gpg executable. Basically, I use a ForEach loop, store the file name as a variable, and execute the following expression as ...
1
vote
1answer
65 views

How to use GNU Privacy Guard to verify authenticity of MediaWiki download

I just downloaded the latest version of MediaWiki and want to check it's authenticity. They provide a signature file on their download page http://www.mediawiki.org/wiki/Download. How would one use ...
6
votes
1answer
254 views

Avoid gpg signing prompt when using Maven release plugin

I've got a Maven project that I'm trying to configure to use the maven release plugin. Part of the release process is to use the Maven GPG Plugin to sign artifacts which requires among other things, ...
3
votes
1answer
314 views

Extracting the files from a windows pgp executable self extracting archive on linux [closed]

I have a customer who sends me (via their legacy system) a file containing some data. The issue is that they encrypt it via PGP and then create an executable self-extracting file to encase it. I am ...
8
votes
1answer
279 views

Using GPG with org-mode

What I want is to be able to make a 'heading' under which I can have encrypted data. I should be able to have multiple headings within the same file in emacs. I had this working, but unfortunately I ...
4
votes
1answer
405 views

How can I decrypt a PGP Self Decrypting Archive programatically? [closed]

Everyday I receive SDA files for whom I have the passphrase. The decryption is done by running the file and manually entering a passphrase in the program window that pops up. I'd like to avoid this ...
1
vote
1answer
126 views

GPG: secret key & check passphrase

How to check that GPG secret key does not contain passphrase? I wouldn't like import this key.
0
votes
2answers
107 views

How GPG find the corresponding private key

Here is what i have or as far as i know about GPG 1. when GPG encrypt using a public key , we need to specify a keyid/user_id to identity that key. but when decrypt, looks like we do not need to ...
1
vote
0answers
57 views

create filename variable in GNU\GnuPG>gpg

I am trying to create a .bat file to run everymonth C:\GNU\GnuPG>gpg --armor --recipient "alice" --output "E:\Destination\data*_12-13-2012.txt.asc" --encrypt "E:\input\data*_12-13-2012.txt" I ...
0
votes
1answer
573 views

Generate dsa/elgamal key pair with bouncy castle that imports in GPG without eror

I have created a small program to generate a DSA / El Gamal PGP Key Ring using Bouncy Castle 1.47 API. The key generation goes real well without an error. I export the private and public key to a file ...
0
votes
1answer
120 views

GPG encryption using shell_exec not working with the browser but works with the terminal

Here's my code that I'm running on a browser. It will encrypt the file and the output will be in different path. I can run it with the terminal but doesn't work on browser. Somebody said that I should ...
0
votes
1answer
92 views

Encrypt to OpenPGP public key given in file [closed]

Given a file containing an OpenPGP public key, in the form -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.12 (GNU/Linux) [base64 encoded public key data] -----END PGP PUBLIC KEY BLOCK----- ...
0
votes
2answers
344 views

Can the Oracle PL/SQL dbms_crypto package decrypt a file encrypted with the Linux gpg command?

I'm new to encryption and am trying to figure out if the Linux gpg command and Oracle's dbms_crypto package can work together. Oracle version is 11R2. I'll be receiving files encrypted by a ...
0
votes
1answer
102 views

Automatically sign build artifact from Jenkins

I'm writing a library that uses cmake. I've set the build up to add a make target that builds a Debian source package that I can then upload to Launchpad with dput to create an Ubuntu PPA. Part of ...
1
vote
2answers
67 views

Retroactively sign git commits

Recent versions of git (>= 1.7.9) support signing individual commits with GPG. Is it possible to retroactively sign all commits within a tree?

1 2 3 4 5 6