Tagged Questions

Pretty Good Privacy (PGP) is a data encryption and decryption computer program that provides cryptographic privacy and authentication for data communication.

learn more… | top users | synonyms

16
votes
6answers
6k views

PGP Library for C#?

I'm looking for an easy to use PGP Library for C#. Does anyone know of any, preferably for free?
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. ...
8
votes
5answers
369 views

Easiest way to sign/certify text file in C++?

I want to verify if the text log files created by my program being run at my customer's site have been tampered with. How do you suggest I go about doing this? I searched a bunch here and google but ...
6
votes
4answers
1k views

C# How to simply encrypt a text file with a PGP Public Key?

I've researched a bit about how to achieve what I said in the question and found several APIs but most of them look very complicated and since I'm just a noobie in this area I just want a simple ...
4
votes
2answers
66 views

How do I use Go's openpgp package?

I've been looking through the documentation for Go's openpgp package, and I think I must be missing some obvious points. For example, there's a ReadKeyRing function, but no WriteKeyRing. I can, on the ...
4
votes
1answer
98 views

OpenPGP tag 18/19 description confusion

Can someone please clear up a bit of MDC and data encryption for me? in rfc 4880, it says: The plaintext of the data to be encrypted is passed through the SHA-1 hash function, and the result ...
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
1k views

Accessing pgp encrypted file in Ruby

I have a pgp-encrypted file that I need to extract data from at runtime. Can this be done by decrypting to memory only (as opposed to creating a decrypted file and deleting it when done)?
3
votes
5answers
241 views

Simple way to implement public-key cryptography in C++?

I want to be able to sign a file. By that I mean that the recipient can check that the file is indeed from me and can view its content. Is there any simple way to do that in C++? I just had a look at ...
3
votes
1answer
155 views

How to get return codes from PGP Command Line code

I am using a McAfee E-Business Server v8.6 and I wanted to get the return codes from the encryption/decryption commands from the command line. I run the said codes from PowerBuilder. I wanted to get ...
3
votes
1answer
3k views

How to encrypt a string/stream with bouncycastle pgp without starting with a file

I need to encrypt a stream with pgp using the bouncycastle provider. All of the examples I can find are about taking a plain text file and encrypting that however I won't have a file and it's ...
3
votes
3answers
173 views

Are there any good PGP libraries for .NET?

I'm looking for something that is non-beta and can decrypt a file with a couple lines of code. I tried looking at BouncyCastle, but its so complicated I can't figure it out and every forum I check ...
3
votes
1answer
84 views

PGP passphrases in company

Friend of mine wanted introduce in his company emails PGP encryption for exchange mails with clients. He asked me to write easy app supporting that. I found useful dll wrapper - so it seems to be not ...
3
votes
2answers
840 views

Python and PGP/encryption

i want to make a function using python to encrypt password by the public key. at the user end i need to install PGP software which will generate the key pair .i want to use public key only for ...
3
votes
5answers
798 views

How can I create a self-contained encrypted file on Linux?

I recently went through this little noob adventure on a Linux desktop: Take a text file with sensitive info PGP-encrypt it (e.g. with Seahorse) Back it up Reinstall OS, erase hard drive, drop ...
2
votes
2answers
54 views

PGP decryption using java api

i am trying to decrypt a PGP encrypted file. I would like to use the available java api and not third party. Is this possbile? I see posts that java api has capablities wanted to know if some one ...
2
votes
1answer
95 views

Sign a multipart mail using PGP/MIME

I'm trying to sign a mail using PGP in php. I could bring the boundaries and headers to work correctly but the mail signature isn't valid (as Thunderbirds Enigmail states). My question here is what ...
2
votes
0answers
285 views

PGP decryption on iOS

I'm trying to implement decryption of a PGP file on an iPad. I set up some test .txt files which I then encrypted via PGP desktop. I've imported the private key of the certificate used to encrypt ...
2
votes
1answer
308 views

BouncyCastle PGP and McAfee eBusiness Server 8.6 Incompatibility

I have been banging my head against the wall now for a couple of weeks trying to figure out why our bank cannot decrypt a message that has been single-pass signed and encrypted using BouncyCastle PGP. ...
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
417 views

Converting PGP public keys to RSA Public key XML Format

I am faced with a problem on converting PGP Public keys to RSA Public Key format. Following public key in PGP format that need to be converted to XML format. Please help me, if any of you had ...
2
votes
2answers
477 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
3answers
545 views

PGP encryption from PHP

If I run the command gpg -e -r john@doe.com my_secret_file.txt from unix command prompt, it is working fine. But when I try to use the same command using PHP, it's not working : $gpg = ...
2
votes
2answers
197 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
3answers
582 views

What algorithm does PGP use to encrypt the private key using the passphrase?

The PGPKeyRingGenerator constructor takes in a passphrase to encrypt the private key. What is the algorithm that it uses to do this? It has a field called encAlgorithm, but I couldn't find any ...
2
votes
3answers
148 views

PGP Encrypting emails for site users (ASP.NET)

One requirement for a new site is for any emails sent from the site to the users (like newsletters etc) are to be sent using PGP encryption. Has anyone ever done this before / is it possible and if ...
2
votes
2answers
432 views

PGP Encrypt from C# using GnuPG

I'm trying to encrypt a incoming document in C#, and I'm using GnuPG with input redirection. I need to use -se(sign and encrypt) in a single step, which requires entering passphrase. But for some ...
2
votes
4answers
144 views

Shell script not picking up password file

Running the below shell script seems to ignore the password file I'm feeding it. I'm continually prompted for it. If I enter it, the rest of the script goes without a hitch, but as I'm running it ...
2
votes
4answers
1k views

PGP Freeware and c#

How to encrypt file with public key, that was added to current keyring, with using c# and command line? Thanks.
2
votes
2answers
735 views

Mac PGP WDE emergency recovery procedures

This is really more of a serverfault/IT question, but I am not part of the beta. Equipment / Topology: MacBook Pro (Running OSX) 4GB RAM Used for email, web browsing, basicly everything that isn't ...
2
votes
8answers
1k views

Is there any benefit to encrypting twice using pgp?

I am asking from a "more secure" perspective. I can imagine a scenario with two required private keys needed for decryption scenarios that may make this an attractive model. This is to settle an ...
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... ...
2
votes
1answer
3k views

PGP Encryption with BouncyCastle C# causes invalid key warning on signature verification

We need to PGP encrypt files and send them over FTP to a third party. The files are encrypted with the DH/DSS public key of the third party and signed with our private key. The third party have our ...
2
votes
2answers
227 views

Is there a standard implementation for Electronic Signatures on fill-in-form web applications?

I have a client who is interested in adding in electronic signature support to a long (40 question) seller application form. I'm a little stumped on whether there is an existing standard or process ...
2
votes
8answers
7k views

Easiest way to decrypt PGP-encrypted files from VBA (MS Access)

I need to write code that picks up PGP-encrypted files from an FTP location and processes them. The files will be encrypted with my public key (not that I have one yet). Obviously, I need a PGP ...
1
vote
1answer
25 views

Signing HTML Documents Using PGP or SSL via Web Forms

Let’s say I have a contract between two parties published on the Web. I want both parties to be able to sign the contract to show they consent to the terms, the way they would with handwriting in real ...
1
vote
2answers
66 views

Will it be an over-kill for a mobile device to use PGP?

I am looking forward to develop a secure mobile application. I find my needs getting full-filled with PGP. Since pgp includes full data encryption (symmetric-key). So, is PGP an viable solution for ...
1
vote
1answer
75 views

Using mutiple keys for Bouncy Castle C# API

I am writing a program in C# to encrypt files with a private and public pgp key. I am very new to PGP and C# but I am getting a hang of it. Can some point me in the right direction on how to use ...
1
vote
2answers
80 views

FTP Changing PGP File During Transfer in C#

I have PGP files that I've verified as being valid, but at some point during the FTP upload, they become corrupt. When retrieved, I get an error message stating "Found no PGP information in these ...
1
vote
1answer
75 views

How can I tell what version of PGP BouncyCastle has implemented in their Java implementation of PGP encription?

Looking at their release notes (http://www.bouncycastle.org/latest_releases.html) I dont see any dates or anything referring to what version of PGP it is up to par with. Maybe I am thinking of it ...
1
vote
1answer
67 views

PGP and the Cryptography Application Block

I just had a request to add PGP support to a web application and web service that I'm developing. I currently am using the Enterprise Library, and would like to use the Cryptography Application Block ...
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
0answers
376 views

PGP Encryption & PGP Decryption

I'm having trouble decrypting files using the BouncyCastle OpenPGP API. I followed this post: http://rafayal.blogspot.com/2009/06/pgp-decryption-with-c.html to decrypt files. However, I am getting an ...
1
vote
2answers
262 views

PGP Decrypt using ANT

We have an ant build file that needs to encrypt/decrypt a bunch of files using a PGP Public Key. Is there a native (or library) ant task to do so. I really would like to avoid solutions that involve ...
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
vote
2answers
582 views

IPSec vs OpenSSL vs PGP

IPSec is employed at the IP level, SSL at the transport level and PGP at the application level. In some lecture not it says: IPSEC: Most general solution but least flexible SSL: Still very general ...
1
vote
1answer
251 views

public private key solution for javascript and python

I'm looking for a public private key solution that I can use with a javascript client and python backend. The aim is to send data encrypted from the client to the server... Are the any solutions? ...
1
vote
2answers
602 views

How to encrypt data in php using Public/Private keys?

I have a small string of some data (less than 1kb) that I would like to have user agents pass to other sites when they are sent from my site. In order for the other sites to verify that I was the one ...
1
vote
1answer
179 views

what is wrong with this (test) private key?

can anyone tell me what is wrong with the data of the key itself? the pgp program i downloaded (http://ppgp.sourceforge.net/) keeps on telling me the private keys i generate are missing the secret key ...
1
vote
1answer
135 views

pgp algorithm specific data extraction

would this be a correct way extract the algorithm specific values from a pgp key? i have a weird problem where all but the last values for DSA and ElGamal can be extracted properly, which then messes ...

1 2 3