Tagged Questions

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

learn more… | top users | synonyms

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 ...
2
votes
3answers
160 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 ...
2
votes
1answer
255 views

OpenPGP library

Is there a library to create OpenPGP keys, or to encrypt a file using OpenPGP?
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... ...
1
vote
2answers
179 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 ...
1
vote
1answer
180 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
0answers
70 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 ...
1
vote
1answer
181 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
123 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 ...
1
vote
1answer
50 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 ...
0
votes
1answer
73 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 ...
0
votes
0answers
75 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 ...
0
votes
0answers
75 views

How to decrypt with specific keyring on windows?

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
75 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 ...
0
votes
1answer
155 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. ...
0
votes
1answer
397 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 ...
0
votes
4answers
182 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 ...
0
votes
2answers
119 views

Is there a free pgp key dumping program?

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
93 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 ...
0
votes
2answers
151 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 ...
0
votes
1answer
81 views

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 ...
0
votes
1answer
94 views

OpenPGP Signing

I'm reading RFC4880 in an attempt to produce an implementatdion of a subset of OpenPGP (RSA signatures) using http://phpseclib.sourceforge.net/. I have the publickey and ...
0
votes
1answer
263 views

PGP - GnuPG - A few questions

I want to use GnuPG (http://www.gnupg.org/), the open source software that is a full replacement for PGP. The software looks great though I have never used it before. I will be using the software ...
0
votes
2answers
302 views

Are there any Non GPL Open Source PGP libraries for .NET out there

I'm looking for a free, open source API for encrypting and decrypting PGP files. I'd like to use it in closed source products, as well as open source ones, so it would have to be a license other than ...
0
votes
1answer
399 views

Encrypted and signed MIME messages using RFC 1847

I need a client-server encryption solution for web transfer, (i.e. signed and encrypted client-side, and verified and decrypted server-side). I am using HTTP, but SSL is not available due to shared ...
-1
votes
1answer
258 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. ...