The OpenPGP standard was originally derived from PGP (Pretty Good Privacy)

learn more… | top users | synonyms

-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
0answers
39 views

Verifying a signature using go.crypto/openpgp

I have a binary file: foo.bin This file has been signed using a gpg key to create: foo.bin.sig I have a file containing the public key that was used to sign the binary file. What I'd like to do ...
0
votes
1answer
113 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 ...
0
votes
1answer
29 views

Can a public key be generated from a PGP PRIVATE KEY?

I am creating the license of my java product with openpgp using the public key. The product is shipped with the private key to read the license file. Is this the right approach? Can the private key be ...
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() { ...
0
votes
1answer
23 views

Facing issues with using Openpgp library

I downloaded the OpenPGP example code mentioned in question How do you use the PHP OpenPGP library?. I faced following error when I tried to access keygen.php: Fatal error: Call to undefined ...
1
vote
1answer
51 views

Does Pgp signauter contains signer userid?

I have a signed public key. So I wanted to view all the signatures in this pgp public key. I got signature list and when I tried to get userid of signer, I got null. So My doubt is whether PGP ...
2
votes
1answer
81 views

How to get signature list from PGPPublicKey using bouncy castle library?

I have PGPPublicKey object. I want to get all signature list(UserId, email Id, trust level for each singature) using bouncy castle api. I tried but couldn't get it. If anyone have example link or ...
1
vote
1answer
56 views

Analysis of pgpdump output

I have used pgpdump on an encrypted file (via BouncyCastle) to get more information about it and found several lines about partial start, partial continue and partial end. So I was wondering what ...
1
vote
2answers
254 views

C# How to simply encrypt a string with a openPGP keys

I have OpenPGP pgpkey and pgpid, in C# how to simply encrypt a string using the Bouncy Castle library ? Public Key of receiver(MPI in base64): ...
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 ...
1
vote
1answer
322 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
238 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 ...
1
vote
1answer
94 views

OpenPGP Public Key Authentication in Go

I'm working on a Go peer-to-peer chat service to be used in Hyperboria, which operates as a meshnet. That is relatively unimportant compared to my problem: I need to use OpenPGP keys existent in ...
-1
votes
2answers
269 views

PGP. Easiest way to encrypt email with public key? [closed]

I have been trying to figure out how to use someone's public PGP key to send them and email only they can read but I'm new to it and find it a bit of a challenge to confirm I am doing it correctly ...
-2
votes
5answers
3k views

Encrypt in Javascript, decrypt in PHP, using public-key cryptography

I'd like to encrypt in JavaScript, decrypt in PHP, using public-key cryptography. I've been trying to find libraries that can accomplish this, but am having issues. I am currently looking at ...
6
votes
2answers
662 views

How do you use the PHP OpenPGP library?

There is a PHP extension port of the gnupg PGP library. However, I'm having a hard time finding examples that explain how to use the library. How do you properly create keys for application users, ...
0
votes
1answer
102 views

Was given a GnuPG v1.4.5 public key file. Is there a simple dummy proof tool that can encrypt files on OSX?

I almost had to deal with PGP encryption before and all I remember was that it confused the heck out of me. Today, a client threw a curveball at us telling us we have to encrypt our CSV files before ...
2
votes
1answer
250 views

How can I asymmetrically encrypt data using OpenPGP with Ruby?

This feels like it should be dead simple, yet I'm not having any luck. The scenario is this: I have a public *.asc key file. I want to use this file (not my personal keyring) to encrypt data on a ...
-1
votes
1answer
492 views

Having Issues Using GnuPG From Command Line [closed]

I have never used PGP files before and am just learning to use GnuPG to decrypt them. I am working on a project where I have 1800+ encrypted files (PGP encrypted over 5 years ago) that i need to ...
4
votes
0answers
92 views

What does this ambiguous pronoun represent in the text of RFC 4880?

What does RFC 4880 sec 5.1 mean by "this"? The value "m" in the above formulas is derived from the session key as follows. First, the session key is prefixed with a one-octet algorithm ...
1
vote
0answers
778 views

OpenPGP Gmail Applications - Really safe? [closed]

I like to know if applications like http://www.enlocked.com/ are actually safe? Is a full functionality/security of OpenPGP really achieved? What would you improve/change to make this services even ...
0
votes
0answers
45 views

Sending emails, PGP-encrypted if pubkey available

I'm wondering if there is a Python module which works similarly to email.mime but, before sending email, checks keyservers for recipient's email address and if a pubkey is available, encrypts the ...
3
votes
1answer
197 views

OpenPGP Signature Packet hashed data

RFC 4880 describes the version 4 signature packet, tag 2, as - One-octet signature type. - One-octet public-key algorithm. - One-octet hash algorithm. - Two-octet scalar octet count for following ...
3
votes
2answers
422 views

Generating PGP keypair, and signing text with an encrypted PGP private key, in Javascript

I'm writing something that needs to do electronic signatures. Some users will be geeks like me and already have their own PGP keys. Most won't, and won't want to futz with installing or maintaining ...
0
votes
1answer
448 views

Bouncy Castle OpenPGP with VB.Net

I'm mainly posting this for anyone else that needs it since there seems to be a great lack of resources on the internet for this. The samples I did find seemed hobbled together at best and never ...
0
votes
1answer
203 views

Smartcard Authentication on EIDAuthenticate

Maybe I'm just a complete and utter novice but I'm really stuck with implementing Smart Card authentication for Windows using EIDAuthenticate. I've had to download a generic (OpenPGP) minidriver for ...
3
votes
1answer
1k views

GnuPG/PGP and SSL: Sharing the same private key?

I'm trying to sort out my use of digital signatures and encryption. I understand that there are 2 main ways to do this: the PGP way and the SSL way. What I would like to know if it's possible to use ...
1
vote
1answer
548 views

OpenPGP encryption in pure PHP

I would like on your website, create a form that sends me a message encrypted in accordance with the OpenPGP standard in order to decrypt them by Thunderbird & Enigmail. Will include an order from ...
5
votes
2answers
275 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 ...
1
vote
1answer
190 views

Why does Spongy Castle ignore the bcpg and openpgp packages

Does anyone know why SpongyCastle is explicitly excluding openpgp and bcpg packages (amongst others) from being built? I would like to get OpenPGP support working and I will require a number of those ...
-1
votes
1answer
919 views

How to decrypt with specific keyring on windows? [closed]

I'm running into an issue with decrypt on the command line where if I'm logged into the user account with which I created a key/ring and run a decrypt command it finds the necessary keys. However ...
0
votes
1answer
181 views

PGP & Single Sign on

I am completely new to pgp, as far as i can see pgp is being used to encrypt files and emails. 1) Can it be used for single sign on 2) Their is pgp and gnupg (which is based on openpgp) , can ...
-1
votes
1answer
623 views

Decrypting files with PGP and C#

My problem is when the command line runs it doesn't add anything in my decrypt text file. I added text to the decrypt.txt file to see if it writes to it and it does because the text gets deleted. ...
1
vote
1answer
388 views

Extracting Modulus and Exponent from PGP Public Key

I am working on an application that implements PGP encryption. I am faced with a issue where we need to extract the Modulus and Exponent from the PGP public keys. I am using Bouncy castle PGP library. ...
4
votes
1answer
134 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 ...
2
votes
3answers
441 views

Creating OpenPGP messages in Java using FIPS 140-2 library

I am currently upgrading an application that generates OpenPGP messages to be FIPS 140-2 compliant. Currently I generate PGP messages that use RSA/AES-256 encryption which are both approved ...
0
votes
1answer
1k views

How to generate OpenPGP KeyPair without passphrase using BouncyCastle?

I'm working on a project which needs to generate GPG-Keys for public-key encryption. My language of choice for it is Scala and the library for the cryptographic stuff is BouncyCastle Key generation ...
1
vote
2answers
447 views

What is the difference between s/mime ,tsp and pgp

What is the difference between s/mime ,tsp and pgp? Reference : Bouncycastle. Bouncycastle has packages for all of them, just don't understand what is the difference and what is the purspose of ...
0
votes
1answer
330 views

what is wrong with this (test) private key? [closed]

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 ...
0
votes
4answers
374 views

How do you handle extremely large values in python?

How would I get python to work with values of the order of magnitude of 1099511627776 bits large (yeah. 137 gb)? I some what need to implement this (or if you can suggest a better way to do it, will ...
-1
votes
2answers
198 views

Is there a free pgp key dumping program? [closed]

is there any pgp key dumping program like http://www.pgpdump.net/ that also shows the MPI values as well as the other information? the linked website's program will print out ... for the long MPI, ...
0
votes
0answers
135 views

Openpgp does not work in my Thunderbird-Installation [closed]

as mentioned above - i encountered serious troubles. here are the versions of the related software: SuSE 11.2, Thunderbird v.3.1.6, released October 27, 2010, Firefox 3.6 v3.6.12 I created an ...
1
vote
0answers
114 views

Line Breaks in OpenPGP (Using PEAR with drupal)

I am encrypting form submissions in drupal with Pear. The encryption//decryption is working fine, but line breaks are not working. What I mean by that is, whether I use Enigma in thunderbird, or I ...
0
votes
2answers
455 views

PGP Encryption file or text?

I have a csv file that required to be encrypted. I want to ask that is there any difference between encrypt the content and encrypt the file? Or they are the same? Because our client doesn't clearly ...
1
vote
1answer
234 views

How to replace Linq Cast expression?

Question: I have some code for pgp encryption from here: http://blogs.microsoft.co.il/blogs/kim/archive/2009/01/23/pgp-zip-encrypted-files-with-c.aspx It has the below method, using some LINQ. I'm ...
1
vote
1answer
276 views

Looking for a model explaining the internal structure of a PGP-signed & encrypted file

I'm trying to debug & extend an existing piece of Java code using BouncyCastle to decrypt and verify secured attachments. I've looked through the BouncyCastle samples but what it's harder to ...
2
votes
1answer
645 views

OpenPGP library

Is there a library to create OpenPGP keys, or to encrypt a file using OpenPGP?
1
vote
1answer
102 views

Reading PGP key information

can someone show a description of the information of what a pgp looks like if only the descriptions were there but not the actual information? something like (i dont remember if the values are ...

1 2