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

0
votes
0answers
13 views

PGP decrypt file via ProcessStartInfo

I'm using the technique described on this page to decrypt a file PGP. But once in a while you will see a popup to put the passphrase in command despite having indicated their passphrase to decrypt ...
0
votes
0answers
20 views

PGP Encryption/Decryption issue & Integrity methods [migrated]

We had a process that ran for almost 3 years with no problems until last week. We tried to generate an encrypted file and it successfully made it, but on decryption, it gave us this error: It's ...
0
votes
1answer
37 views

key exchange algorithm with optional parties

I need to generate a secret key (or password) with agreement of multiple parties out of which some parties are optional. For example, Mr. A, B, C & D are members who can do agreement and out of ...
1
vote
0answers
44 views

pgp using C# : Alternatives to Bouncy Castle

I need to encrypt and sign data as well as decrypt and verify signature using PGP. Along with this, i also need to verify fingerprints programatically. I went through bouncy castle and the code is not ...
-2
votes
0answers
36 views

PGP, disk encryption schemes [closed]

I am studying various disk encryption schemes (such as PGP, MS Bit Locker, BestCrypt and TrueCrypt) on my Windows OS. I am interested to know "How an encrypted partition/disk/file with the ...
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
122 views

Bouncy Castle Encryption

I have a requirment to send PGP Encrypted CSV Files to SFTP and i know nothing aboutr PGP. After a lot of research I could find following code on internet using 'Bouncy Castle' Library. The code seems ...
0
votes
1answer
57 views

PGP File Decryption

Need some help with pgp file decryption anyone have an idea how to do it in c#? I have it implemented through process.start ("cmd.exe", command) but its not doing anything other than openning the ...
-1
votes
3answers
32 views

Which public key was used PGP [closed]

Is is possible to find out witch public key was used to generate the message? Scenario is like this : I got data which is encrypted with a public key. Now a "bad guy" has the encrypted data, and ...
0
votes
1answer
35 views

PGP Public Key in authorized keys? [closed]

I asked for someones id_rsa.pub SSH Public Key to place in /home/fred/.ssh/authorized_keys, and they sent my a text sequence like: -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.13 ...
0
votes
2answers
31 views

Using PGP with an unknown entity

I'm currently researching on PGP and authentication schemes. Let's say i'm communicating with someone who claims to be an admin of a ftp site. (say, his email address is admin@genuine-website.com) ...
0
votes
1answer
117 views

Encrypt files using PGP in PHP?

I want to use PGP encryption to encrypt a CSV files, I am generating through a PHP script and then send that file to client via email. Client will give me the encryption key, which I need to use for ...
1
vote
2answers
51 views

Standard format for digital signature

I want to make a javascript library for signing messages. I expect the format to be something like... --- BEGIN SIGNED MESSAGE --- This is a plain old message It goes on and on... --- BEGIN RSA OF ...
0
votes
1answer
100 views

openpgp and golang

I have some problems with the documentation. Here is my program: package main import ( "bytes" "code.google.com/p/go.crypto/openpgp" "encoding/base64" "fmt" ) func main() { ...
1
vote
0answers
169 views

How to generate a pgp public keyring with bouncycastle without having a private key

I'm trying to perform pgp encryption/decryption operations via Camel / Bouncy Castle PGP where I store the used keys in a JKS files and generate PGP keyrings on the fly from the public/private keys in ...
1
vote
0answers
334 views

Can't decrypt OpenPGP data I encrypt with BouncyCastle C#

I'm trying to encrypt strings (not files) with OpenPGP using BouncyCastle. I generated a public/private key pair using GPG4win (Kleopatra) for testing. My code works, and outputs the encrypted file, ...
4
votes
1answer
146 views

Any way to PGP encrypt data stream and save it directly to the FTP without having to save it locally?

I have to send PGP encrypted file in asc format to FTP folder via sFTP. Is there a way to PGP encrypt a stream (which is CSV formatted stream) and push it to the sFTP without having to save it on ...
0
votes
1answer
48 views

Best Python way to harvest user entropy from keystrokes a la PGP?

Does anyone recall PGP prompting a user to "generate some entropy" by striking random keys? PGP would measure the entropy as it was being collected, indicating to the user with a cool little progress ...
0
votes
1answer
104 views

PGP encryption from client side (js) with JSF 2

when client select a file with upload component, I need to implement PGP encryption from client side with JSF 2 (Create a faces component) or primefaces 2.2 (I dont see anything from client side in ...
2
votes
0answers
42 views

How does Nexus Pro auto-verify the authenticy of the downloaded artifacts?

I have done some research on the Maven Central Repository security, especially the Cross Build Injection attack (XBI). I read a few links, which I listed below: ...
3
votes
2answers
550 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 ...
0
votes
0answers
224 views

How to encrypt a file using PGP Hex ID and PGP Name instead of a public key file in C#

I am currently working on a application which will create a text file, encrypt the file using PGP public key(which is not a file but a hexadecimal number and a pgp name) and post it to an FTP on ...
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 ...
0
votes
0answers
42 views

JBoss SFTP Connection with PGP Keyfile

I'm currently working out how to establish a SFTP connection to a remote system from my JBoss (which is running on a Linux system) application. The problem is, that I don't have any idea where I have ...
1
vote
2answers
89 views

python-gnupg: retrieve public key of a signed message

I would like to know the public key of the user that generates an encrypted/signed PGP message. I looked at the python-gnupg API but I just found how to check that the signature is OK ...
0
votes
1answer
95 views

DIDISOFT - OPEN PGP Null pointer exception on decrypt

I am using OpenPGP from didisoft to encrypt and decrypt files. I have an encrypted file and the private key corresponding to the encryption key. But when I try to use the DecryptFile () method, I get ...
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 ...
3
votes
1answer
313 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 ...
0
votes
2answers
104 views

Must GnuPG to have installed keys for every username profile?

I'm running (on my local machine) the GPG (wingpg ) - command line version. My login name at win7 - is RoyiN. ( so I have a profile for it) When I logged in - I've installed the keys (using ...
4
votes
1answer
403 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.
1
vote
4answers
348 views

Using two public keys to encrypt a file

I am not sure if this is the correct place for this question as this might be more of a theory based question. But I was also interested in the C# implementation of the following. And how feasible it ...
0
votes
1answer
55 views

Multiple keys in same keyring

This might be a very basic question and might have been discussed, but I want to make sure I understand it right and hence stating along with problem My company is to get files from 5 different ...
1
vote
1answer
216 views

Exception on decrypting file using BouncyCastle PGP

I was trying to decrypt this sample file given by the client, using a class called PgpDecrypt. But when the code comes to this line: Stream clear = pbe.GetDataStream(privKey); it returns an error: ...
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
1answer
73 views

Revoke pgp key using bouncy castel api

I want to revoke my pgp public key using bouncy castle api. I have generated revocation certificate. But I couldnt find how to revoke public key using revocation certificate. how to achieve it? I ...
0
votes
2answers
141 views

PGP encryption with international characters

I have a web application built with C# that creates a txt file based on user input information. This txt file is then converted to PGP in the application via a command line tool. If a user enters ...
0
votes
1answer
264 views

Java signing files with BouncyCastle - Create signature of a file usign secret keyring

I'm trying to write a Java program that signs a file with a private key. The program takes 3 arguments - file, secret keyring and a password. The output should be in a detached file *.bpg. The problem ...
0
votes
1answer
158 views

PHP check if GPG/PGP public key is valid

Through a web interface I'm trying to check if a given public key is valid or not. The bash command gpg --import key.pub returns import successful/failed based on the given key, but I don't want to ...
1
vote
1answer
76 views

php keygen and pki

I have searched for almost an hour. What I want is a php implementation that allows you to generate a PGP key pair and to generate an encrypted message based on that. Also assuming you have the ...
1
vote
0answers
87 views

Reading an email address from a Bouncy Castle PGP key

After fighting with the library for some time, I am at a loss for how to get this simple piece of data from a PgpPublicKey object. I've tried the most obvious route, GetUserAttributes() but it returns ...
-1
votes
0answers
68 views

PGP Public/Private Keys Signatures [closed]

I came across studying PGP Public/Private Keys and Signatures. I could get the basic stuff that in Public/Private key pair one is for encryption and other for decryption. But various posts/forums ...
4
votes
1answer
157 views

Restore PGP public key from private in bouncycastle

In algorythmic level it is possible to restore public key from private. But is there a way to do it in bouncycastle library with PGP keys? Thanks!
-1
votes
1answer
100 views

Best free way to encrypt transmission between two servers? [closed]

I want to know the proper way to encrypt transmissions between two servers and prevent other servers from claiming to be a server they are not. I have two servers which contain a domain name that ...
1
vote
1answer
323 views

Fix Gpg4Win PGP encrypted binary files corrupted by upload to CoreFTP server using VB .NET

This post is similar to an earlier post about preventing the corruption of PGP binary files when transferring those files to an FTP server using C# ...
0
votes
2answers
240 views

Linux / Windows Shell Scripting to Unlock PGP File

I have a sequence of scripts which downloads PGP files from a FTP server. I then unzip these files with a private key using PGPKeys. The unzipped files are then picked up by a SQL Server job which ...
0
votes
0answers
118 views

how to download decrypt pgp file from web app

I have an web application which will create encrypted PGP file when user click 'Generate File'. After generate encrypted PGP file , i save the file in hard disk and show the list of file in that ...
0
votes
1answer
78 views

Security protocol for server-side shared secret generation

I am trying to implement a security system that has the following requirements: All clients share a password, which is not known to the server Each client has a unique client-id, which is known to ...
3
votes
1answer
202 views

Perl PGP in memory encryption that uses GPG

I tried using Crypt::OpenPGP but encountered some issues decrypting GPG encrypted messages. So now I'm looking for alternatives. I would like the module to be able to do its encryption/decryption ...

1 2 3 4 5