active questions tagged pgp - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T03:46:52Z http://stackoverflow.com/feeds/tag/pgp http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/771315/is-there-any-benefit-to-encrypting-twice-using-pgp 2 Is there any benefit to encrypting twice using pgp? ojblass http://stackoverflow.com/users/66519 2009-04-21T06:43:06Z 2010-03-14T21:49:08Z <p>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 argument. My vote is that it is not adding any additional security other than having to compromise two different private keys. I think that if it was any more secure than encrypting it one million times would be the best way to secure informaiton and I don't buy it. So I guess my question becomes is a two locking mechanism equivalent to another one locking mechanism with a single key? </p> <p><strong>Update: Forgive me if the answer is obvious but my bread goes dead as I read books on the topic.</strong></p> http://stackoverflow.com/questions/1400021/getting-error-while-transfering-pgp-file-through-ftp-the-underlying-connection 0 Getting error while transfering PGP file through FTP : The underlying connection was closed: An unexpected error occurred on a receive. sumeet Sharma http://stackoverflow.com/users/0 2009-09-09T14:22:23Z 2010-03-14T14:00:03Z <p>I am trying to upload a PGP encrypted file through FTP. But I am getting an error message as follows:</p> <p><strong>The underlying connection was closed: An unexpected error occurred on a receive.</strong></p> <p>I am using the following code and getting the error at line:</p> <p><strong>Stream ftpStream = response.GetResponse();</strong></p> <p>Is there any one who can help me out ASAP.</p> <p>Following is the code sample:</p> <pre><code>FtpWebRequest request = WebRequest.Create("ftp://ftp.website.com/sample.txt.pgp") as FtpWebRequest; request.UsePassive = true; FtpWebResponse response = request.GetResponse() as FtpWebResponse; Stream ftpStream = response.GetResponse(); int bufferSize = 8192; byte[] buffer = new byte[bufferSize]; using (FileStream fileStream = new FileStream("localfile.zip", FileMode.Create, FileAccess.Write)) { int nBytes; while((nBytes = ftpStream.Read(buffer, 0, bufferSize) &gt; 0) { fileStream.Write(buffer, 0, nBytes); } } </code></pre> <p>Regards, Sumeet</p> http://stackoverflow.com/questions/2393203/php-mcrypt-decrypting-and-encrypting-files 0 php mcrypt - decrypting and encrypting files? KnockKnockWhosThere http://stackoverflow.com/users/287813 2010-03-06T16:34:10Z 2010-03-06T16:41:56Z <p>I've been looking around for a php class that allows the decryption / encryption of pgp-encrypted csv files. Everything I've found has been primarily geared towards passwords. I'm assuming the principles are essentially the same, but was wondering if someone here can point me in the direction of a class specifically intended to receive files via FTP and decrypt them, as well as encrypt files and FTP them elsewhere? It's my first foray into encryption, so hoping that someone can point me to something useful? I'll keep googling, but would really appreciate some finger-pointing... </p> http://stackoverflow.com/questions/2341486/how-are-pgp-keys-formatted 0 how are pgp keys formatted? calccrypto http://stackoverflow.com/users/282012 2010-02-26T12:23:24Z 2010-02-26T14:21:58Z <p>i want to write a program in python to simply read pgp keys. however, i cant seem to find any documentation describing how pgp keys are formatted. i dont want to be searching through the source code of open pgp to look for source code that i wont be able to understand. </p> <p>say i open a public key, remove the top "-----BEGIN PGP PUBLIC KEY BLOCK-----" and bottom "-----END PGP PUBLIC KEY BLOCK-----", and change the data back into bytes, then what? i saw my name and email somewhere in the middle, but i cant see anything else. which part tells the computer the cipher name/value (say rsa = 1, elgamal = 2, etc.) in the string? where is the key size? where is the time-the-key-is-valid-for? in general, how do pkc programs read the public/private keys?</p> http://stackoverflow.com/questions/2326968/pgp-passphrases-in-company 3 PGP passphrases in company Maciej http://stackoverflow.com/users/77273 2010-02-24T15:06:17Z 2010-02-25T11:58:04Z <p>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 very big deal to write app.</p> <p>What puzzles me is security aspect. (I dont want to push him on the mine)<br> I know PGP uses <a href="http://www.pgpi.org/doc/pgpintro/#p23" rel="nofollow">private/public keys combination.</a> It uses also passphrase to encrypt private key.<br> This is clear</p> <p><strong>But what if one of co-workers change passphrase before leave company?</strong><br> Does it mean that firm will be not able to open archive mails with communication to clients?<br> <em>(Sounds like best way to blackmail, vengeance etc...</em>)</p> <p>Assumption: all users' keys (pub + prv) are stored on users (network) home drive and backuped.<br> 1st generated key's password is stored in envelope in safe box. So keys can be restored - but (I guess) keys can be useless when you dont know current password used for private key encryption?<br> (Correct me if I'm wrong!)</p> <p>I wonder how you archive it! What's your experience?</p> http://stackoverflow.com/questions/1059723/php-exec-pgp-command 1 PHP exec pgp command Jim Thomas http://stackoverflow.com/users/129100 2009-06-29T18:24:05Z 2010-02-03T20:58:48Z <p>I am want to use PHP to 'exec' a pgp encryption command. Regardless of the command line I get either a err 64 (parser error) or 162 (complete failure during an encode). So I have reduced the command line within the PHP program to this simple fingerprint display which stills errs out:</p> <pre><code>exec("/opt/pgp/bin/pgp --fingerprint", $results); </code></pre> <p>If I run "/opt/pgp/bin/pgp --fingerprint" on a command line I get "2 keys found" and the expected display. But the same exec under PHP gives me the parser error 64. I have tried "\n" to the string command and that does not make a difference. The user runs as 'nobody' in the browser which does have execute permission on pgp. (If pgp was not at least starting up I would not even see the 'parser error' from it.)</p> <p>Is there something special I need to do in order to run pgp under PHP?</p> http://stackoverflow.com/questions/2165543/why-do-people-share-their-pgp-keys-and-how-to-use-it 0 Why do people share their PGP Keys and how to use it? [closed] zengr http://stackoverflow.com/users/231917 2010-01-29T22:12:38Z 2010-01-29T22:17:00Z <p>I just learned how to generate PGP keys on Ubuntu (using Terminal or Seahorse). </p> <p>I have 2 very basic questions.</p> <ol> <li>Why do people share their PGP Keys? <a href="http://www.google.com/search?q=my+pgp+key" rel="nofollow">example</a></li> <li>How can we sent an authenticated mail using a PGP Key? For example, from a newbies point of view, I use gmail to send mail. I type in the following:</li> </ol> <blockquote> <pre><code>To: john@yahoo.com Subject: HI Body:How are you doing John Doe </code></pre> </blockquote> <p>So, if I need to send this mail using a PGP key, what changes will I have to make?</p> <p>Thanks!</p> http://stackoverflow.com/questions/2159286/access-pgp-encrypted-folder 1 Access PGP Encrypted Folder Kane http://stackoverflow.com/users/113535 2010-01-29T01:20:32Z 2010-01-29T01:26:04Z <p>I am currently reviewing an architecture document which details using PGP folder based encryption (and I though PGP died years ago). </p> <p>Does anyone know of a .NET or Java library that could be used to read/write files to a PGP encrypted folder (or if a library is even needed)?</p> http://stackoverflow.com/questions/1940551/can-i-store-a-pgp-key-ring-in-a-csp-parameters-key-container 0 Can I store a PGP key ring in a csp parameters key container? skurge http://stackoverflow.com/users/154366 2009-12-21T14:55:16Z 2009-12-29T00:13:48Z <p>Hello, i have been using PGP. I need to safely store our PGP keyring for our application that will be processing some pgp files. Can I believe that the PGP is Asymmetric cryptography and i should be able to store the information for keyring in a key container?</p> http://stackoverflow.com/questions/1859473/in-php-how-to-find-already-encrypted-file-in-specific-folder 1 in php how to find already encrypted file in specific folder. Rahul Waghmare http://stackoverflow.com/users/190346 2009-12-07T11:39:19Z 2009-12-07T17:43:18Z <p>Hi,</p> <p>I am using PGP (GNU Privacy Guard) for encrypting the file. while encrypting i removed the '.pgp' extension of encrypted file.</p> <p>Now some how i want to know which file is already encrypted in the specific folder.</p> <p><strong>Note :-</strong> <em>my goal is that ... do not encrypt any file twice ... so before encrypt any file .. i want to check is the file already encrypted.</em></p> <p>in php can we find out which file is already encrypted ?</p> <p>Thanks &amp; Regards Rahul.</p> http://stackoverflow.com/questions/1737133/does-re-encryption-tampers-the-original-encryption 0 Does re-encryption tampers the original encryption? [closed] RPK http://stackoverflow.com/users/194328 2009-11-15T09:58:52Z 2009-11-15T16:13:05Z <p>I usually use AxCrypt to encrypt my documents. For some documents that I want to store online, being a paranoid, I re-encrypt using PGP.</p> <p>I want to know whether re-encryption does affect the previous encryption in any way? AxCrypt uses AES-128 bit encryption algorithm, whereas I have set CAST for PGP. </p> http://stackoverflow.com/questions/141428/is-there-a-standard-implementation-for-electronic-signatures-on-fill-in-form-web 2 Is there a standard implementation for Electronic Signatures on fill-in-form web applications? Tim Howland http://stackoverflow.com/users/4276 2008-09-26T19:29:01Z 2009-11-02T16:33:25Z <p>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 that's out there that folks in the financial world would expect to see?</p> <p>I could certainly add in a system where we generate a bunch of text based on their responses, have the applicant sign it with their private key and upload a public key- but that seems like a lot to ask of people. Do non-nerds even have PGP installed these days?</p> <p>Is there a standard approach to this out there? Anyone work in the financial world that's done this and had it work well?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1604267/ssis-pgp-encription 0 SSIS PGP encription Jason M http://stackoverflow.com/users/189956 2009-10-21T23:45:10Z 2009-10-22T09:20:00Z <p>I have a SSIS package that writes the output to Flat file. Now I need to <strong>PGP encrypt</strong> the output file and further <strong>decrypt</strong> in other packages. I am curious if anyone knows of how to do this, or better yet a website with helpful hints on how to do it. </p> <p>Thanks</p> http://stackoverflow.com/questions/1557051/moving-pgp-keys 1 Moving PGP Keys [closed] Daniel http://stackoverflow.com/users/53740 2009-10-12T21:30:18Z 2009-10-12T21:39:17Z <p>I am using gpg and generated, imported and signed keys.</p> <p>How can I take all of the work that I have done and export all of my keys then import them into another machine?</p> http://stackoverflow.com/questions/1471840/decrypt-pgp-file-using-asc-key 0 Decrypt PGP file using ASC key. [closed] jdsushi http://stackoverflow.com/users/0 2009-09-24T13:54:37Z 2009-10-12T00:42:17Z <p>Hello, I installed the command line version of pgp and I received a .pgp file and its key in a .asc file. </p> <p>How can I decrypt the pgp file using command line and the asc key?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1536035/what-is-the-best-python-method-for-encryption 0 what is the best python method for encryption jaysh http://stackoverflow.com/users/186160 2009-10-08T06:55:39Z 2009-10-10T15:02:52Z <p>I retrieved the PGP key from the public key server ,Now need help in getting a python method for encryption which can accept this PGP public key .</p> <p>As i know PGP/Gnupg.py module do not allow me to use encryption/decryption function separately without generating the key.</p> http://stackoverflow.com/questions/1527973/automating-pgp-decryption 0 Automating PGP decryption Brettski http://stackoverflow.com/users/5836 2009-10-06T20:35:59Z 2009-10-06T20:42:23Z <p>We would like to automate the decryption of PGP files to our site so they my be processed. </p> <p>Our clients send PGP encrypted files to us via FTP. We have written a service which consumes these files and does stuff with the data. The problem we are having is determining a good (perhaps easy) way to decrypt the files from the service or using some other automated method.</p> <p>The application is on the .NET platform 2.0.</p> http://stackoverflow.com/questions/1462043/pgp-gnupg-a-few-questions 0 PGP - GnuPG - A few questions Daniel http://stackoverflow.com/users/53740 2009-09-22T19:14:57Z 2009-09-22T19:25:13Z <p>I want to use GnuPG (<a href="http://www.gnupg.org/" rel="nofollow">http://www.gnupg.org/</a>), the open source software that is a full replacement for PGP.</p> <p>The software looks great though I have never used it before. </p> <p>I will be using the software to encrypt files to transfer via the web, I am not using the software for emails.</p> <p>I have a few questions:</p> <p>1) What are recommended GUI's available for windows and Ubuntu?</p> <p>2) I want to generate a generate a key pair that is Diffee Hellman (DH/DSS) not RSA. What is the line command to do this? As well using the key length of 2048.</p> <p>3) Once I generate my public-private key pair, how do I sign someone elses public key that I have through command line?</p> http://stackoverflow.com/questions/1202508/adding-a-gpg-signature-to-an-already-signed-document 1 Adding a GPG signature to an already signed document? larsks http://stackoverflow.com/users/147356 2009-07-29T19:29:10Z 2009-09-01T16:23:44Z <p>We'd like to implement a workflow that requires multiple people to digitallly sign a document. If I have multiple secret keys in my own keychain, I can do something as simple as:</p> <pre><code>gpg --sign -u userid1 -u userid2 filename </code></pre> <p>But what do I do if I've got an already signed document and I want to <em>add</em> a signature? One solution would be to have everyone generate detached signatures for the document, and then package them all together in a zip file or something, but the overhead there is substantially higher. Is there a better way?</p> http://stackoverflow.com/questions/1348471/gnupg-verifying-the-sender 0 GnuPG: verifying the sender [closed] Heoa http://stackoverflow.com/users/164148 2009-08-28T17:49:47Z 2009-08-28T18:04:12Z <p>A person emailed me his PGP signature. When I compared it to the signature from the PGP server, it is much shorter not matching at all. I use the version 1.4.9.</p> <ol> <li>Why is the signature so short?</li> <li>Why does it not match the server?</li> <li><p>What is the signature of about 100 bits' encryption? </p> <p>-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (NetBSD)</p> <p>iD8DBQBKl0BmzbodwsP3RI0RAqQwAKCsP�覃ᝋꜴ鉰਍� 1TEDKNU8/04JTQRbHotaDd0= =Ju5N -----END PGP SIGNATURE-----</p></li> </ol> http://stackoverflow.com/questions/1214011/pgp-freeware-and-c 2 PGP Freeware and c# iburlakov http://stackoverflow.com/users/111015 2009-07-31T18:06:40Z 2009-08-01T20:21:03Z <p>How to encrypt file with public key, that was added to current keyring, with using c# and command line?</p> <p>Thanks. </p> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt 5 How to do PGP in Python (generate keys, encrypt/decrypt) Greg http://stackoverflow.com/users/13009 2009-06-19T22:28:46Z 2009-07-31T18:26:43Z <p>I'm making a program in Python to be distributed to windows users via an installer.</p> <p>The program needs to be able to download a file every day encrypted with the user's public key and then decrypt it.</p> <p>So I need to find a Python library that will let me generate public and private PGP keys, and also decrypt files encrypted with the public key.</p> <p>Is this something pyCrypto will do (documentation is nebulous)? Are there other pure Python libraries? How about a standalone command line tool in any language?</p> <p>All I saw so far was GNUPG but installing that on Windows does stuff to the registry and throws dll's everywhere, and then I have to worry about whether the user already has this installed, how to backup their existing keyrings, etc. I'd rather just have a python library or command line tool and mange the keys myself.</p> <p>Update: pyME might work but it doesn't seem to be compatible with Python 2.4 which I have to use.</p> http://stackoverflow.com/questions/1171729/are-there-any-non-gpl-open-source-pgp-libraries-for-net-out-there 0 Are there any Non GPL Open Source PGP libraries for .NET out there Justin Dearing http://stackoverflow.com/users/95195 2009-07-23T13:29:19Z 2009-07-23T15:53:03Z <p>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 the GPL.</p> http://stackoverflow.com/questions/787398/pgp-library-for-c 6 PGP Library for C#? jinsungy http://stackoverflow.com/users/1316 2009-04-24T20:12:16Z 2009-07-10T19:29:56Z <p>I'm looking for an <strong>easy to use</strong> PGP Library for C#. Does anyone know of any, preferably for free? </p> http://stackoverflow.com/questions/1083546/accessing-pgp-encrypted-file-in-ruby 4 Accessing pgp encrypted file in Ruby lk http://stackoverflow.com/users/115822 2009-07-05T06:10:52Z 2009-07-05T06:46:59Z <p>I have a pgp-encrypted file that I need to extract data from at runtime.<br> Can this be done by decrypting to memory only (as opposed to creating a decrypted file and deleting it when done)?</p> http://stackoverflow.com/questions/1048722/python-and-pgp-encryption 3 Python and PGP/encryption trapti http://stackoverflow.com/users/0 2009-06-26T11:55:12Z 2009-06-26T12:35:03Z <p>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 encryption and private key for decryption. The problem is coming with the encryption function(how to use key for encryption) and also in pgp installing . can somebody tell me the correct way to do this </p> <p>thanks</p> http://stackoverflow.com/questions/556670/recommendations-for-java-openpgp 2 Recommendations for Java + OpenPGP? furtelwart http://stackoverflow.com/users/32043 2009-02-17T12:59:01Z 2009-06-21T06:22:08Z <p>Hi!</p> <p>I want to develop a small OpenPGP client and I'm searching for a Java library for OpenPGP.</p> <p>Are there any (open source) recommendations for this approach?</p> <p><a href="http://www.cryptix.org/" rel="nofollow">Cryptix.org</a> does not seem alive anymore...</p> <p>Greetings, guerda</p> http://stackoverflow.com/questions/826323/mac-pgp-wde-emergency-recovery-procedures 0 Mac PGP WDE emergency recovery procedures Andrew Burns http://stackoverflow.com/users/3683 2009-05-05T18:39:50Z 2009-05-30T04:24:44Z <p>This is really more of a serverfault/IT question, but I am not part of the beta.</p> <p>Equipment / Topology:</p> <ol> <li>MacBook Pro (Running OSX) 4GB RAM <ul> <li>Used for email, web browsing, basicly everything that isn't Visual Studio or a MS app.</li> </ul></li> <li>VMWare Fusion VMs (mostly XP) for various development needs <ul> <li>Main VS2008 Development</li> <li>Custom 3rd party software</li> <li>Installation Testing Environments</li> <li>etc</li> </ul></li> </ol> <p>I have a need for whole disk encryption [WDE] due to the nature of the data I work with. Because I use both the VMs and OSX I can not simply install TrueCrypt WDE inside my VMs as that would leave my OSX data unprotected.</p> <p>FileVault will not work for several reasons that I will leave you to find if you care that much about it, suffice it to say that it will not work for my purpose.</p> <p>TrueCrypt's WDE is fantastic and would be my perfered solution if it worked on the EFI intel macs :( PGP has a <a href="http://www.pgp.com/products/wholediskencryption/" rel="nofollow">solution</a> that works on macs.</p> <p>The problem is simple: What happens in the event I need to access the disk without booting the system?</p> <p>With TrueCrypt you could mount the drive from BartPE or another windows system with TC installed and copy the data over. </p> <p>Is there a way to do this with PGP for mac that people are aware of? Have others solved this problem already?</p> <p>I know that you can decrypt the drive in an <em>emergency</em> but there are time when this is undesirable or unreliable. What I am looking for is the ability to build a boot disk (windows is fine, it doesn't have to be mac) to be able to mount my drive unencrypted.</p> http://stackoverflow.com/questions/890889/how-can-i-create-a-self-contained-encrypted-file-on-linux 2 How can I create a self-contained encrypted file on Linux? rob http://stackoverflow.com/users/110163 2009-05-21T00:26:48Z 2009-05-21T01:25:55Z <p>I recently went through this little noob adventure on a Linux desktop:</p> <ol> <li>Take a text file with sensitive info</li> <li>PGP-encrypt it (e.g. with Seahorse)</li> <li>Back it up</li> <li>Reinstall OS, erase hard drive, drop computer in pool, etc, etc</li> <li>Retrieve the encrypted file from backup, and gasp in horror to realize you can't decrypt it, even though you know the password, cause you didn't back up ~/.gnupg where your key was stored.</li> </ol> <p>Why did I fall for this? Cause I used to be a Mac user, where I would create an encrypted sparse disk image, drop my file in it, and unmount. I could move this file all over the place, drop it onto any mac, mount, enter the password, and ta-da! As long as I remembered the password, all was good.</p> <p>Anyone know how to do something like that with Linux?</p> <p>(I hope this is related enough to programming for SOF... it's important for my programming job anyway!)</p> http://stackoverflow.com/questions/828766/gnupg-and-createprocess-in-delphi-service 0 GnuPG and CreateProcess in Delphi Service Alex07 http://stackoverflow.com/users/102108 2009-05-06T09:15:31Z 2009-05-06T10:51:45Z <p>Hi! Trying to use <a href="http://gnupg.org/" rel="nofollow">GnuPG</a> with Delphi (Win32). I need to sign some file with such console command:</p> <blockquote> <p><code>"C:\Program Files\GNU\GnuPG\gpg.exe" -a -u Alex --passphrase secretpassword --yes --clearsign -o C:\Result.asc C:\InputFile.txt</code></p> </blockquote> <p>First I created normal VCL Forms App and used <code>CreateProcess</code> function, everything was OK, but when I transfered that code to my service app, gpg.exe exits with code 2. Maybe I missed something? Any ideas?</p> <p><strong>Update</strong></p> <p>Just in case someone has such a problem. GnuPG stores keys in <code>C:\Documents And Settings\&lt;username&gt;\Application Data\gnupg\</code> but when service runs from another user account (SYSTEM) - it can't find your key. GL &amp; HF</p>