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
29 views

Pipe works in Powershell but not CMD?

So the larger context of this problem is that it isn't possible, for whatever reason, to decrypt this file using, say, Bouncy Castle, so we're trying to do an automated command line with the normal ...
0
votes
1answer
31 views

Implementing gpg Encryption in Ruby

Trying to convert some old shell/unix scripts into Ruby. I have the following encryption of a file that's accomplished via the gpg tool in Unix. I can pass in the recipient key, the file I want to ...
0
votes
1answer
11 views

GPG delete old key before importing

I have a python script that used gnupg to automatically encrypts data with the users public gpg key. but it is causing a problem when i upload a new key to the system. gpg tends to use the old key or ...
1
vote
1answer
45 views

How to safely keep a decrypted temporary data?

As an interest, I'm planning to write a password management script using python. My rough idea is to store the pairs of account name and password in an SQlite database file which is encrypted by GPG. ...
0
votes
2answers
55 views

GPG (PGP) decryption in client side web applications

How would I be able to decrypt some encrypted data on the client side of a web application? E.g. The data is stored encrypted on the server. It was encrypted using a public GPG key. The server ...
1
vote
1answer
42 views

Git GPG error signing tags

gotOK I'm a bit of a rookie when it comes to Git. So I decided to read Pro Git by Scott Chacon. BTW great book, highly recommend it. Anyway got to the section about Signed Tags. To sign a tag with ...
0
votes
0answers
64 views

GPG Error on debian wheezy when execute 'sudo apt-get update' [closed]

I have installed Debian wheezy. Then I want to set apt source, just like below: deb http://security.debian.org/ wheezy/updates main contrib deb-src http://security.debian.org/ wheezy/updates main ...
0
votes
1answer
25 views

Perl script use of gpg vs. CLI gpg?

As part of a perl script, I am downloading some files from a website based on cycle numbers obtained from emails. I use a regexp to find the appropriate cycle number, append that to a url and grab an ...
2
votes
1answer
45 views

'lein deploy clojars' does not ask for a passphrase

I want to deploy a Clojure library using Leiningen. I have done the following things: installed gpg created a gpg key-pair encrypted my Clojars credential into ~/.lein/credentials.clj.gpg installed ...
-5
votes
0answers
37 views

How to implement GPG in C language? [closed]

I am trying to implement GPG digital certificates in C language. But I am stuck at the verification of the digital signature. Can anyone give an insight into this?
0
votes
0answers
20 views

Duplicity GPG error

When making backup or restore with Duplicity in some occasions, this error arises. System: Ubuntu 10.04 LTS Duplicity version: Version: 0.6.21-0ubuntu0ppa21~lucid1 Error, from ...
0
votes
1answer
38 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
23 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
111 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
1answer
39 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
1answer
100 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
54 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
58 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
153 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
113 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
62 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
93 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
189 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
34 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
76 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
70 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
713 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
107 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
87 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
71 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
109 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
163 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
102 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
33 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
301 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
91 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
397 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
54 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
21 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
214 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
492 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
116 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
166 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
3answers
280 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
89 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
230 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
72 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 ...
7
votes
1answer
317 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
349 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
306 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 ...

1 2 3 4 5 6